Increment the Push notification Badge iPhone Increment the Push notification Badge iPhone xcode xcode

Increment the Push notification Badge iPhone


Usually in all apps the unread notification counts are maintained in the server. When the server sends a push notification to a particular device token they send the badge count along with the payload. Once the device is notified and your app is in background(or killed) the OS automatically update the badge count to your app icon. In case whether you have your app running, you will get notified in the

application:didReceiveRemoteNotification:

delegate and thus you are able to receive the badge count from the (NSDictionary *)userInfo. And thus you are able to update the app icon badge count using the function

[UIApplication sharedApplication].applicationIconBadgeNumber = [[[userInfo objectForKey:@"aps"] objectForKey: @"badgecount"] intValue];

Think this should help you.


If the application is not open you will not be able to increase the badge except from the payload.


When a Push Notification comes while your application is in background mode & you want to increment the Badge Number, you should send a badgeCount to the server, so that the server knows the current count.

If you manage the badge count from the Server Side then this code is enough:-

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo  {    NSLog(@"remote notification: %@",[userInfo description]);    if (userInfo) {        NSLog(@"%@",userInfo);        if ([userInfo objectForKey:@"aps"]) {             if([[userInfo objectForKey:@"aps"] objectForKey:@"badgecount"]) {                [UIApplication sharedApplication].applicationIconBadgeNumber = [[[userInfo objectForKey:@"aps"] objectForKey: @"badgecount"] intValue];            }        }    }}