gpt4 book ai didi

IOS - 生产上的 ScheduleLocalNotification

转载 作者:行者123 更新时间:2023-11-30 13:53:49 25 4
gpt4 key购买 nike

我正在使用来自AppDelefate的scheduleLocalNotification作为UILocalNotification,并且调试配置一切顺利。但是,当我在临时设置上测试我的应用程序时 - 它不会触发通知。有人可以指导我吗?谢谢!

最佳答案

首先 - 本地通知不依赖于配置文件。您会错过 PushNotifications。

您确定要安排通知吗?也许您忘记请求用户许可?

它应该是这样的:

if #available(iOS 8.0, *) {
application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound, categories: nil))
let notification = UILocalNotification()
notification.alertBody = "body"
notification.alertAction = "open"
notification.fireDate = NSDate().dateByAddingTimeInterval(60)
notification.soundName = UILocalNotificationDefaultSoundName
notification.userInfo = ["myKey": "myValue"]
notification.category = "category"
UIApplication.sharedApplication().scheduleLocalNotification(notification)
} else {
// do nothing
// iOS 7 and prior does not require permission
}

关于IOS - 生产上的 ScheduleLocalNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33919530/

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