uiLocal 通知不起作用
Posted
技术标签:
【中文标题】uiLocal 通知不起作用【英文标题】:uiLocal notification not working 【发布时间】:2016-01-22 02:12:19 【问题描述】:我将本地通知设置为从应用程序启动后 1 秒开始,然后每天在该时间开始,由于某种原因它正在工作,我什至没有收到初始通知,有人可以帮我吗? Code Screenshot
【问题讨论】:
工作正常还是不工作? 【参考方案1】:你有没有添加这个代码
let userNotificationTypes : UIUserNotificationType = [.Alert, .Badge, .Sound]
let settings = UIUserNotificationSettings(forTypes: userNotificationTypes, categories: nil)
application.registerUserNotificationSettings(settings)
进入你的AppDelegate
s didFinishLaunching 函数?
而你的AppDelegate
中的这段代码来处理它:
func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification)
print("local notification received!")
【讨论】:
它打印出“收到本地通知”但没有弹出通知,请帮助 很高兴它有帮助。如果您觉得它有帮助,您可以勾选答案,并让其他用户知道这实际上有帮助。祝你的项目好运!以上是关于uiLocal 通知不起作用的主要内容,如果未能解决你的问题,请参考以下文章