4

Possible Duplicate:
iOS application: how to clear notifications?

is there a way how to remove notification from notification center(iOS 5) when I click it and start my application ? Thanks a lot

Community
  • 1
  • 1
mysho
  • 353
  • 2
  • 4
  • 18

1 Answers1

8

Set the applicationIconBadgeNumber property of your UIApplication instance to 0. That is,

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

Edit: In the current iOS SDK, you can't remove just a single notification from the Notification Center programatically.

Adam Wright
  • 48,938
  • 12
  • 131
  • 152