I have an app with local notification at the App Store.
In the last 4 version updates to my app, there were customers who experienced something strange - the app lo
Add the following code to your application:didFinishLaunchingWithOptions: method to clear all the notification.
[[UIApplication sharedApplication] setApplicationIconBadgeNumber: 1];
[[UIApplication sharedApplication] setApplicationIconBadgeNumber: 0];
[[UIApplication sharedApplication] cancelAllLocalNotifications];
Once done you can add the new notifications.