views:

89

answers:

1

I want to use the same number count like the mail icon for the iPhone and iPad how does that small number pop up over an icon?

+5  A: 
[UIApplication sharedApplication].applicationIconBadgeNumber = 3;

Remember to set this to 0 when you want the badge to go away, so it doesn't get stuck there annoyingly.

jtbandes