i\'m trying to update my app to iOS 8. In a function i schedule a local notification (i\'ve already checked that firedate and all other parts of the notification are right)
This is not iOS 8 issue, but
[UIApplication sharedApplication].scheduledLocalNotifications
issue. Most relevant answer which i found here
Having similar issues right now. My guess here is that iOS does not schedule the notifications immediately but only at the end of the current run loop. I am running into these problems when setting the scheduledLocalNotifications property several times in the same run loop and changes don't seem to be updated accordingly. I think I will just keep a copy of the local notifications array myself and only set scheduledLocalNotifications and never read it.