尝试触发 UILocalNotification 不起作用
Posted
技术标签:
【中文标题】尝试触发 UILocalNotification 不起作用【英文标题】:Trying to fire UILocalNotification not working 【发布时间】:2016-12-06 14:52:41 【问题描述】:我正在使用下面的代码来创建通知,但不知何故它没有触发。我真的只是希望它在我打开某个视图控制器时触发,但到目前为止没有任何触发。我的代码有什么问题?
func notify()
let notification = UILocalNotification()
notification.fireDate = Date()
notification.repeatInterval = .minute
notification.alertBody = "The alert body"
notification.alertAction = "enter text here"
UIApplication.shared.scheduleLocalNotification(notification)
我在应用委托中也有这一行:
application.registerUserNotificationSettings(UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil))
【问题讨论】:
【参考方案1】:我认为这会失败的一个原因是,notification.fireDate = Date()
会将fireDate
设置为当前时间,当管理 UserNotifications 的(单独)进程被提醒您要触发一个通知。考虑转移到UNNotification
s
【讨论】:
就是这样!当我将日期更改为稍晚一点时,它再次起作用并给了我通知。【参考方案2】:我将触发日期更改为将来的某个时间(当时是下午 6 点,我使用 calendarComponents 将其更改为 06:03,然后它似乎起作用了。通知被触发了 :)
【讨论】:
以上是关于尝试触发 UILocalNotification 不起作用的主要内容,如果未能解决你的问题,请参考以下文章
UILocalNotification在重新安装应用程序后触发
iOS UILocalNotification 设置为每天触发一次,每两天触发一次,并且仅在星期日触发