- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
使用来自 UNUserNotificationCenter
的新本地通知。 我尝试删除带有一些标识符的通知:
UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: identifiers)
来自文档:
This method executes asynchronously, removing the pending notification requests on a secondary thread.
完成处理程序不存在。那么我怎么知道它什么时候真的被删除了呢?在继续之前,我需要确保此标识符不再存在。
我知道我可以使用下一个代码
notificationCenter.getPendingNotificationRequests { (requests) in
for request in requests {
}
}
但是如果我在删除后立即运行此代码 - 它们仍然存在。但过了一段时间后,在代码中它们消失了。当您即将达到 64 条通知的限制时,在添加新通知之前尤其重要
最佳答案
您不必执行您在答案中发布的所有复杂逻辑。您可以简单地调用 removeAllPendingNotificationRequests
并等待它在 getPendingNotificationRequests
方法中完成。您可以在下面运行这段代码,看看会发生什么。您会看到 after remove
将立即打印,然后是 1..63
中的数字,然后是 0
。
let notificationCenter = UNUserNotificationCenter.current()
for i in 1 ... 63 {
let components: Set<Calendar.Component> = [.year, .month, .day, .hour, .minute, .second]
let date = Calendar.current.date(byAdding: .hour, value: 1, to: Date())!
let dateComponents = Calendar.current.dateComponents(components, from: date)
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: false)
let content = UNMutableNotificationContent()
content.title = "Title"
content.body = "Body"
content.sound = UNNotificationSound.default()
let request = UNNotificationRequest(identifier: "id" + String(i),
content: content, trigger: trigger)
notificationCenter.add(request) {
(error) in
print(i)
}
}
notificationCenter.removeAllPendingNotificationRequests()
print("after remove")
notificationCenter.getPendingNotificationRequests() {
requests in
print(requests.count)
}
之所以如此,是因为它们都是任务放入队列中,一个一个运行。所以,首先,它发出 63 条通知,然后删除它们,最后计算它们的数量。所有这些任务严格一个接一个地执行
关于ios - 等到使用 removePendingNotificationRequests 删除来自 UNUserNotificationCenter 的本地通知 ios 10 swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44328083/
使用来自 UNUserNotificationCenter 的新本地通知。 我尝试删除带有一些标识符的通知: UNUserNotificationCenter.current().removePend
我是一名优秀的程序员,十分优秀!