Reputation: 2982
I would like to use the iOS notification image (the numeric bubble shown over app icons). How do I do that?
Upvotes: 4
Views: 1385
Reputation: 57179
This can be done either through a local or push notification or setting the application badge number property.
[UIApplication sharedApplication].applicationIconBadgeNumber = 10;
Upvotes: 10