Possible Duplicate:
iOS application: how to clear notifications?
I want to clear notifications for my app from the notification center, according to Apple's release notes for iOS5
http://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-5_0/_index.html
they say:
"Notification Center displays notifications that are considered "unread.” To accommodate push and local notifications that have no unread status, set your application’s badge count to 0 to clear that app’s notifications from Notification Center."
I am calling this in my app
application.applicationIconBadgeNumber = 0;
but the notifications do not get removed from the notification center.
How to remove them?