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) in this way:
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
then i use this code to print the scheduled local notification:
NSLog(@"notifications %@", [UIApplication sharedApplication].scheduledLocalNotifications );
but the array
[UIApplication sharedApplication].scheduledLocalNotifications
is empty even if the notification is not fired. Then , to check if the local notification is really scheduled, i tried to use the code
NSLog(@"notification appdelegate %@", application.scheduledLocalNotifications );
in the function
- (void)applicationWillResignActive:(UIApplication *)application
of Appdelegate.m
in this case, the array of the scheduled local notifications is not empty and the NSLog function print the correct notification. This happens only on real devices, in the simulator my app works fine. And the problem is not to check the permission of the user to schedule local notifications, cause i've already faced it. Could someone help me? some ideas?
This is not iOS 8 issue, but
issue. Most relevant answer which i found here
Once Local notification is fired for given date it won't show details in [UIApplication sharedApplication].scheduledLocalNotifications array. So if you give some interval count to fireDate (from CurrentDate to 10~20s) it will show you the details.
I am facing same issue and Finally I got solution why its happened.
if your are not set fireDate in notification object. its work perfect but when you are try to get notification list its always blank.
here is notification object without set fire date
here is notification object with fire date
here is code you can comment fire date and check its different
For iOS8 :
Firing a local notification 30 seconds from now.
- for Objective c
- for Swift
Register Notification Settings
- for Objective c
- for Swift
Now you can get the local notification as well.