Karthik
Karthik

Reputation: 21

Remove all UILocalNotifications after application uninstalled by the user

I want to delete all the UILocalNotifications when a user uninstalls/deletes the application.

Which delegates will be called when application is uninstalled? How can I remove all UILocalNotifications after deleting application?

Upvotes: 0

Views: 375

Answers (2)

Karthik
Karthik

Reputation: 21

Mobile Device did not delete the notification even after i delete the application ,After deleting the application also notification get fire

Upvotes: 0

Louis Zhu
Louis Zhu

Reputation: 802

  1. There's no such delegates. The App itself can not detect its deletion.
  2. You don't need to remove local notifications by yourself. The system deletes them automatically while deleting the App.

Upvotes: 1

Related Questions