gpt4 book ai didi

ios - 有没有一种方法可以暂停一个实例的重复通知?

转载 作者:行者123 更新时间:2023-11-29 05:48:47 25 4
gpt4 key购买 nike

我希望能够暂停一次重复通知,并且在需要触发它的时间,我希望它触发。我了解 removeAllPendingNotifications。但不确定这是否能解决问题,因为它似乎完全删除了它。你有什么想法?

最佳答案

您可以使用 getPendingNotificationRequests 并选择需要取消的标识符,然后将其传递给 removePendingNotificationRequests(withIdentifiers: [String])

UNUserNotificationCenter.current().getPendingNotificationRequests { (reqs) in
var ids = [String]()
reqs.forEach {
if $0.identifier == "someId" {
ids.append($0.identifier)
}
}
UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers:ids)
}

`

关于ios - 有没有一种方法可以暂停一个实例的重复通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55874217/

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