I would like to remove old notifications that my app has made from the iOS 5 Notification Center. Can I do this? If so, how?
|
feedback
|
|
To remove notifications from the Notification Center simply set your icon badge number to zero.
This only works if the number changes, so if your app doesn't use the badge number you have to first set, then reset it.
| |||||
feedback
|
|
For me it only worked with sending a local notification with only a badge like this:
And in the method
I can set the badge to 0 again. | ||||
|
feedback
|
|
A more straightforward method that I use (and doesn't require badges) is to reset the array of scheduled local notifications to itself, as follows:
This has the effect that any scheduled notifications remain valid, while all "old" notifications that are present in Notification Center are removed. However, it also has the feel of something that might change in a future release of iOS, as I haven't seen any documentation for this behavior. Of course, if you want to remove all notifications, it's simply the following:
| |||
|
feedback
|
|
Yes, you can cancel specific or all local notifications by calling
or
| ||||
|
feedback
|