Reputation: 881
Is there any way to clear the badge for an app with out removing the notification from the notification center?
Any help would be appreciated.
Upvotes: 0
Views: 403
Reputation: 582
Try:
[UIApplication sharedApplication].applicationIconBadgeNumber = 0;
in applicationDidBecomeActive
Upvotes: 1