iOS上的每日提醒

时间:2017-07-19 14:09:13

标签: ios swift notifications unusernotificationcenter

我使用以下代码触发每日提醒:

let triggerDate = calendar.date(from: calendarComponents)
let triggerDaily = Calendar.current.dateComponents([.hour, .minute, .second], from: triggerDate!)
let trigger = UNCalendarNotificationTrigger(dateMatching: triggerDaily, repeats: true)
let request = UNNotificationRequest(identifier: "daily-identifier", content: content, trigger: trigger)
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
//UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: [identifier])
UNUserNotificationCenter.current().add(request, withCompletionHandler: { (error) in
      if error != nil {
        debugPrint("center.add(request, withCompletionHandler: { (error)")
      } else {
        debugPrint("no error?! at request added place")
      }
    })

以上代码允许我设置标识为daily-identifier的每日警报。由于我计划在我的代码中设置两个每日闹钟,因此我使用上面的代码并使用另一个标识符second-daily-identifier来触发另一个具有不同小时/分钟组合的闹钟。

我遇到的问题: 如果我使用代码

UNUserNotificationCenter.current().removeAllPendingNotificationRequests()

在添加请求之前,它将删除先前设置的警报(例如,如果我先添加“daily-identifier”警报,那么当我添加“second-daily-identifier”时将删除“daily-idenifier”警报。

如果我使用其他方法

UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: [identifier])

专门删除我要设置的那个,然后它运作良好。但是,我发现我再也不能阻止它了。例如,如果我将标识符更改为“第三标识符”,则已设置的警报将永远存在于我的手机中。即使我删除应用程序也无法删除它们。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

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

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