I have created notifications with UILocalNotification()
and I'm trying to clear the received notifications, without removing the rest that are scheduled.
This is the code I'm trying to use:
UIApplication.sharedApplication().applicationIconBadgeNumber = 0
UIApplication.sharedApplication().cancelAllLocalNotifications()
However this seems to delete all scheduled, is there not a clearRescivedNotifcations()
?