gpt4 book ai didi

iOS 10 : How to repeat local notification once fired on particular date?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:54:12 24 4
gpt4 key购买 nike

我想在特定日期创建一个本地通知,然后在该本地通知被触发后每 30 秒重复一次。这是我的代码:

let calendar = Calendar(identifier: .gregorian)
let components = calendar.dateComponents(in: .current, from: date)
let newComponents = DateComponents(calendar: calendar, timeZone: .current, month: components.month, day: components.day, hour: components.hour, minute: components.minute)
let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: false)
let request = UNNotificationRequest(identifier: ID, content: content, trigger: trigger)

另一个问题:如何设置多个警报来实现相同的结果?

例子:

闹钟 1:1/21/2017 @ 8:30am -> 每 30 秒重复一次

警报 2:1/22/2017 @ 8:32am -> 每 30 秒重复一次...等等。

执行此操作的最佳策略是什么?

最佳答案

我认为您需要设置两个 UNCalendarNotificationTrigger。我假设您想在用户没有响应时每 30 秒重复一次。

一个在 Alarm1: 1/21/2017 @ 8:30:00 repeat: false。并在 1/21/2017 @ 8:30:30 添加第二个 UNCalendarNotificationTriggerrepeat: true

当用户响应第一个通知时,您可以删除第二个 UNCalendarNotificationTrigger

到目前为止,还没有一个 UserNotificationTrigger 允许在用户不响应通知的情况下在不同的内部重复。

关于iOS 10 : How to repeat local notification once fired on particular date?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41775794/

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