Setting the application icon badge number

suggest change

Use the following piece of code to set the badge number from within your application (suppose someNumber has been declared before):

Objective-C

[UIApplication sharedApplication].applicationIconBadgeNumber = someNumber;

Swift

UIApplication.shared.applicationIconBadgeNumber = someNumber

In order to remove the badge completely, just set someNumber = 0.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents