What happens when a UILocalNotofication is scheduled when a device is switched off.

Eg. I schedule a UILocalNotification at 3pm everyday. But the device is switched off from 3:00pm to 4:00pm. I guess any one of the following conditions will be true.

  • No notification is fired after device is restarted.
  • Notification is fired when the device is restarted i.e. at 4:00pm

I do not have a device and could not test it on a simulator.

Note: By switch off I mean that the device is turned off, and not sleep/stand by mode

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

When you turn off your device, the notification becomes non-existant, so when you turn your device back on, nothing is going to happen without creating that notification again.

So if you schedule an event for 3PM and your device is turned off at 2:59PM, then back on at 3:59PM, the notification will not fire because it has to be recreated.

link|improve this answer
That's not correct. A local notification does persist a reboot, it is not lost unless its fire time was while the device was switched off. – Dev Feb 17 at 7:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.