I want to implement same notification feature in my app just like in-built Mail application of iOS devices?
In Mail application single notification get removed out of many from notification center when user view it?
I have searched for same and got answer for removing all notifications by using
[UIApplication sharedApplication].applicationIconBadgeNumber = 0;
But I don't want to remove all at once, I want to implement it same as in-built Mail application. Can anybody help on this?