14

如何禁用/取消已设置的通知?

这是我的日程安排功能。

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)
        }
    })
}
4

3 回答 3

40

要取消所有待处理的通知,您可以使用以下命令:

UNUserNotificationCenter.current().removeAllPendingNotificationRequests()

要取消特定通知,

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)
}
于 2016-11-12T14:00:00.400 回答
9

相同 的方式UNNotification是识别是基于identifier您创建时传递的UNNotificationRequest

在你上面的例子中,

let request = UNNotificationRequest(identifier: "myNotif", content: notif, trigger: dateTrigger)

你实际上已经硬编码了identifierto be "myNotif"。这样,每当您想删除已设置的通知时,您都可以这样做:

UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: "myNotif")

但是,请注意,当您对标识符进行硬编码时,每次requestUNUserNotificationCenter通知添加 a 时,实际上都会被替换。

例如,如果您"myNotif" request在 1 分钟后安排了一个集合,但您在 1 小时后调用另一个函数来安排一个集合"myNotif",它将被替换。因此,只有最迟"myNotif"在一小时后才会出现在pendingNotificationRequest.

于 2016-11-12T14:05:22.860 回答
-5

如前所述您可以使用以下代码取消所有通知:

UIApplication.sharedApplication().cancelAllLocalNotifications()

于 2016-11-12T13:46:47.723 回答