my problem is this:

I have scheduled some UILocalNotifications on an iOS app, the problem is that if I delete the app without deleting the objects associated with the notifications (and consequently removing the notifications from the scheduledNotifications array) the notifications still fire.

Although I have not experienced them actually firing (they are set to repeat within a week's interval) I have evidence of this since I NSLog the scheduledNotifications array at application launch, which even after deleting the app and reinstalling it (with the entities of the data model gone), still shows some scheduled notifications.

I've searched the UIApplication and the UIApplicationDelegate reference in Apple's reference library but I found no method to know if the app is being deleted, if there is I would just write

[[UIApplication sharedApplication] cancelAllLocalNotifications];

in said method.

So, is there a way for knowing this?

Thank you in advance, your help is very much appreciated.

link|improve this question

There is no method to check that the app was uninstalled – KingofBliss Feb 15 '11 at 3:45
feedback

1 Answer

up vote 1 down vote accepted

This was bug in 4.0 that the local notification was repeated even if the user has deleted the app, but at least that bug was fixed by Apple in later release.

link|improve this answer
I am working with iOS 4.2, unless it is some kind of issue with the simulator. – ArturoVM Feb 16 '11 at 3:55
Check it in device. If the problem exists then file a bug – KingofBliss Feb 16 '11 at 4:38
thank you, I checked on the device and it's fine. – ArturoVM Feb 19 '11 at 14:22
The local notifications will show once the app is reinstalled. Seems like another bug. – Gomfucius Apr 24 at 21:29
feedback

Your Answer

 
or
required, but never shown

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