gpt4 book ai didi

ios - Swift LocalNotification 最后触发日期

转载 作者:行者123 更新时间:2023-11-30 12:48:13 27 4
gpt4 key购买 nike

我正在开发一个应用程序,该应用程序应该在 21 天内每天发送本地通知,但随后它应该停止发送一周。我知道我可以设置 fireDate 并且可以设置重复间隔,但是有什么方法可以设置像最后一个 fireDate 这样的东西吗?或者是否有一个函数在每次发送本地通知时都会触发?我知道如果应用程序从通知启动,则会调用一个函数,但这不是我的解决方案,因为如果用户不打开应用程序,通知将进一步发送。有人可以帮我吗?

这是我到目前为止的代码

let notification = UILocalNotification()
notification.alertBody = "Take Pill"
notification.alertAction = "open"
notification.fireDate = _notificationTime
notification.repeatInterval = .day
notification.soundName = UILocalNotificationDefaultSoundName
notification.timeZone = Calendar.current.timeZone
notification.userInfo = ["title": "takePill", "UUID": "takePill"]

UIApplication.shared.scheduleLocalNotification(notification)

最佳答案

本地通知是系统代表您发送给用户的通知。您的应用程序不在“循环中”。系统始终存在,因此可以随时发送通知 - 但您的应用程序可能会被暂停甚至终止。因此,如果您打算使用本地通知,则必须考虑当系统为您完成所有这些工作时,您的应用将来永远不会运行的可能性。

因此,稍微思考一下就会发现,执行您所描述的操作的唯一配置是安排 21 个通知,每个通知在随后的每一天触发。 只有 21 个通知,因此在第 22 天,没有任何反应,因为当天没有安排通知。

(但是这个限制也会让您犹豫并让您想知道本地通知是否是实现此目的的方法。)

关于ios - Swift LocalNotification 最后触发日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41347949/

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