gpt4 book ai didi

swift - 更改 UNTimeIntervalNotificationTrigger 的重复值

转载 作者:行者123 更新时间:2023-11-28 15:12:20 26 4
gpt4 key购买 nike

我有一个本地通知,我每 60 秒重复一次:

var trigger = UNTimeIntervalNotificationTrigger(timeInterval: 60, repeats: true);

我想将UNTimeIntervalNotificationTriggerrepeats值从true更改为false遇见即:

if (condition) {
trigger!.repeats = true;
}

但是这似乎不起作用,因为我认为我无法在创建对象后更改 repeats 值。

有什么办法可以做我想做的事吗?

最佳答案

您可以删除本地通知为

UIApplication.shared.cancelAllLocalNotifications()

如果你想再次 true 然后再次分配

trigger = UNTimeIntervalNotificationTrigger(timeInterval: 60, repeats: true)

可能是这个作品

关于swift - 更改 UNTimeIntervalNotificationTrigger 的重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47427193/

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