Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

An iPhone UI button

share|improve this question

6 Answers

up vote 39 down vote accepted

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.

share|improve this answer

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

share|improve this answer
looks great, we ended up building our own with retina and gradient support, will share once we release our product. – ohadpr May 1 '11 at 1:22
2  
Whilst this may theoretically answer the question, we would like you to include the essential parts of the linked article in your answer, and provide the link for reference. Failing to do that leaves the answer at risk from link rot. – Kev Mar 13 '12 at 0:15
Sadly, like now. That link gives a 404 error :( – christophercotton Oct 4 '12 at 3:43

We have a badge view in Nimbus that's super easy to use and well documented:

http://latest.docs.nimbuskit.info/NimbusBadge.html

share|improve this answer

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 UIButton and add your badge stuff as a subview

share|improve this answer
3  
Do not subclass UIButton - it doesn't work well, i.e. you only have a convenience class method for construction. Also, no need for the "container" view for the button. – Eiko Jan 18 '11 at 20:30

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. theBadge.layer.cornerRadius = ...; to give it a round shape, draw the text/number in drawRect: or add it as a label etc.

share|improve this answer

You can check for several options here: CocoaControls Badges

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.