Cancel UILocalNotification

后端 未结 10 953
余生分开走
余生分开走 2020-11-27 12:53

I have a problem with my UILocalNotification.

I am scheduling the notification with my method.

- (void) sendNewNoteLocalReminder:(NSDate *)date  a         


        
10条回答
  •  心在旅途
    2020-11-27 13:38

    You can get a list of all scheduled notifications from scheduledLocalNotifications or you can cancel them all:

      [[UIApplication sharedApplication] cancelAllLocalNotifications];
    

提交回复
热议问题