gpt4 book ai didi

swift - applicationIconBadgeNumber 没有更新或增加

转载 作者:行者123 更新时间:2023-11-28 11:05:43 29 4
gpt4 key购买 nike

我是 iOS 开发新手!我尝试使用 UILocalNotification 创建一个应用程序。这是我所做的:

func createLocalNotification(structure:Structure) {

let localNotification = UILocalNotification()
localNotification.category = "CATEGORY"
localNotification.alertBody = "\(structure.messageBody)"
localNotification.alertAction = "see"
localNotification.soundName = UILocalNotificationDefaultSoundName
localNotification.userInfo = ["uuid":structure.UUID]
localNotification.fireDate = structure.date
localNotification.applicationIconBadgeNumber = UIApplication.sharedApplication().applicationIconBadgeNumber + 1

print(localNotification)

UIApplication.sharedApplication().scheduleLocalNotification(localNotification)
}

效果很好!我的问题行是 applicationBadgeNumber。此 property 似乎有效。但当应用程序处于非事件状态时不会增加。然后启动了一个应用程序,Xcode 给我这样的错误:

对尚未渲染的 View 进行快照会生成空快照。确保您的 View 在屏幕更新之前或快照之前至少被渲染过一次。

什么意思?怎么了?感谢您的帮助!

最佳答案

您是否尝试过使用 SoundBadge 设置注册设置?

是这样的:(取自 this link 的一部分)

@IBAction func registerLocal(sender: AnyObject) {
let notificationSettings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(notificationSettings)
}

关于swift - applicationIconBadgeNumber 没有更新或增加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37781191/

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