Git Product home page Git Product logo

Comments (2)

cja1 avatar cja1 commented on June 9, 2024

Hi,

This is pretty easy to tweak with the existing code. In summary you need to switch off the Shine, switch off the Frame and switch off the Shadow. Then it looks like IOS7 as far as I can see.

What I did:

Added this code to .m file:

+ (CustomBadge*) customBadgeIOS7WithString:(NSString *)badgeString withScale:(CGFloat)scale {
    return [[[self alloc] initWithString:badgeString withStringColor:[UIColor whiteColor] withInsetColor:[UIColor redColor] withBadgeFrame:NO withBadgeFrameColor:nil withScale:scale withShining:NO] autorelease];
}

This takes care of the first two items: Shine and Frame. To stop the Shadow just comment out this line in drawRoundedRectWithContext:

CGContextSetShadowWithColor(context, CGSizeMake(1.0,1.0), 3, [[UIColor blackColor] CGColor]);

from custombadge.

ckteebe avatar ckteebe commented on June 9, 2024

The new version supports both: Prior iOS7 style and iOS7 or higher style.

from custombadge.

Related Issues (16)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.