IOS Overriding Local Notifications

后端 未结 2 1068
失恋的感觉
失恋的感觉 2021-01-29 07:50

I created a Local Notification that triggers 60 seconds when a certain button(SetButton) is clicked. My problem right now is if SetButton

2条回答
  •  孤城傲影
    2021-01-29 08:27

    If you only use notifications for that specific action you could cancel all notifications at once using

    [[UIApplication sharedApplication] cancelAllLocalNotifications];
    

提交回复
热议问题