Ahsan
Ahsan

Reputation: 2982

How do I use the numeric notification "bubble" in iOS?

I would like to use the iOS notification image (the numeric bubble shown over app icons). How do I do that?

enter image description here

Upvotes: 4

Views: 1385

Answers (1)

Joe
Joe

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

Related Questions