I have some repeated actionable notifications, and when I tapped on button of some notification (I mean this), I have to delete all the same notifications. For example, I have 4 already pushed notifications:
Not 1
Not 2
Not 1
Not 2
If I use actions of "Not 1", I need to delete all "Not 1", so, It will be like this
Not 2
Not 2
Can I do this?
[UIApplication sharedApplication].scheduledLocalNotifications]
gives me only scheduled notifications, but I need to delete already showed notifications, whitch isn't in this array.