Each time the app is starting ( Each time the app is going to background or going to be terminated (didEnterBackground or WillTerminate) I schedule notifications:
- Cancel existing ones: [[UIApplication sharedApplication] cancelAllLocalNotifications];
- Schedule new ones: [[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
All worked fine at iOS8 and below. Once iOS9 was introduced I got the following strange behaviour: If I Install a new app - all works fine, notifications work well If I update existing app with a new version - notifications stop to be fired. Does anyone have an idea what is the issue?