Is it possible to add a standard-looking badge to a standard UIButton?
If it's not supported semi-natively, what would be the simplest way to achieve this?
Example image:

|
Is it possible to add a standard-looking badge to a standard If it's not supported semi-natively, what would be the simplest way to achieve this? Example image:
|
||||
|
|
|
Here's a VERY NICE class by Sascha Paulus called CustomBadge, that builds and renders custom badges using Core Graphics. They're just UIView subclasses, so you lay them out using their frame just like any other UIView subclass. I've used this library many times and always been pleased with the results. Flexible, easy to use. Totally recommend it. |
|||
|
|
|
Finally, there is an update for CustomBadge available. Now with Retina-Support ... http://www.spaulus.com/2011/04/custombadge-2-0-retina-ready-scalable-light-reflex/?lang=en |
|||||||||
|
|
We have a badge view in Nimbus that's super easy to use and well documented: |
|||
|
|
|
I don't know how this is done out of the box and I honestly doubt that Apple built that into the SDK. Anyway, you could create a custom view with a button on it, add the background of the badge as a UIImageView and place a label on it to hold the badge count. That's a quick solution, it might be better to create a custom subclass of |
|||||
|
|
I'd go a similar way as @Björn Kaiser: Use the button as you like it, and then add a custom view with that badge as a subview to it - I've done it and it works well. As for the view, you can draw it as you like. You can draw it manually or use CoreAnimation and let it make the main part, i.e. |
|||
|
|
|
You can check for several options here: CocoaControls Badges |
|||
|
|