dogwasstar
dogwasstar

Reputation: 881

objective-c only clear the badge when app opens

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

Answers (1)

Federica Venuto
Federica Venuto

Reputation: 582

Try:

[UIApplication sharedApplication].applicationIconBadgeNumber = 0;

in applicationDidBecomeActive

Upvotes: 1

Related Questions