scheduleLocalNotifications will provide you with a list of all scheduled notifications and use
- (void)cancelLocalNotification:(UILocalNotification *)notification
or you can undo them all using:
[[UIApplication sharedApplication] cancelAllLocalNotifications];
source
share