In my app, I'm receiving push notifications with badge number set to one. When app will start, it should set badges count to 0, so I'm using:
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
And it works, but also it removes all notifications from notifications center.
Is there a way to clear badges without removing notifications?