Reset urbanairship badge count
Problem: Let say I get 3 notification. It shows the badge count 3 on my app icon. I open the app or click on the notification and it clears the badge (All Good so far) Now when I get a new notification, the badge count shown on my app icon is 4 instead of 1 That means that the badge count was not reset on Urbanairship end My Code so far: -(void)resetBadgeNotifications:(UIApplication *)application using:(NSDictionary *)notificationInfo{ if( notificationInfo != nil ){ [[NSNotificationCenter defaultCenter] postNotificationName:@"newNotification" object:notificationInfo]; } application