Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to cancel UserNotifications

How I can disable/cancel already setted notification?

Here is my schedule function.

func scheduleNotif(date: DateComponents, completion: @escaping (_ Success: Bool) -> ()) {

    let notif = UNMutableNotificationContent()

    notif.title = "Your quote for today is ready."
    notif.body = "Click here to open an app."

    let dateTrigger = UNCalendarNotificationTrigger(dateMatching: date, repeats: true)
    let request = UNNotificationRequest(identifier: "myNotif", content: notif, trigger: dateTrigger)

    UNUserNotificationCenter.current().add(request, withCompletionHandler: { error in

        if error != nil {
            print(error)
            completion(false)
        } else {
            completion(true)
        }
    })
}
like image 678
Denis Kakačka Avatar asked Nov 12 '16 12:11

Denis Kakačka


People also ask

How do I clear all pending notifications in Swift?

To remove all pending notification requests use the removeAllPendingNotificationRequests() method.


1 Answers

For cancelling all pending notifications, you can use this:

UNUserNotificationCenter.current().removeAllPendingNotificationRequests()

For cancelling specific notifications,

UNUserNotificationCenter.current().getPendingNotificationRequests { (notificationRequests) in
   var identifiers: [String] = []
   for notification:UNNotificationRequest in notificationRequests {
       if notification.identifier == "identifierCancel" {
          identifiers.append(notification.identifier)
       }
   }
   UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: identifiers)
}
like image 68
KrishnaCA Avatar answered Sep 19 '22 12:09

KrishnaCA