Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 585
Ahsan Avatar asked Sep 13 '25 21:09

Ahsan


1 Answers

This can be done either through a local or push notification or setting the application badge number property.

[UIApplication sharedApplication].applicationIconBadgeNumber = 10;
like image 56
Joe Avatar answered Sep 16 '25 12:09

Joe