gpt4 book ai didi

ios - 等到使用 removePendingNotificationRequests 删除来自 UNUserNotificationCenter 的本地通知 ios 10 swift 3

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:31:15 27 4
gpt4 key购买 nike

使用来自 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com