iosobjective-cpush-notificationapple-push-notificationsbadge

How to show the notification count in app icon?


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


Solution

  • You can set it everywhere. E.g:

    -(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
    
    {
        [[UIApplication sharedApplication] setApplicationIconBadgeNumber:123]; // this one
    }