I'm using PushBot as my push notification service, my issue is how do I reset the badge count. I've search and read to use this line of code:
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
The only way the badge count gets reset is if I quit the app from running on the mulit-task bar and launch the app again, any help is greatly appreciated. Thanks,
Just make a button on your UI and on his action put the code line:
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
It will reset it.
Take a look Here for some other implementations.