How to show the notification count in app icon?

Kishore Kumar picture Kishore Kumar · Jan 6, 2016 · Viewed 10.5k times · Source

i like to show the push notification count like this ,i have searched about it but can't get the right solution.

enter image description here

Answer

tuledev picture tuledev · Jan 6, 2016

You can set it everywhere. E.g:

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

{
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:123]; // this one
}