UILocalNotification的UserInfo总是为零

时间:2016-08-15 18:58:59

标签: ios uilocalnotification swift3

我正在创建简单的UILocalNotification,无需安排,只需从后台创建以下代码:

let n = UILocalNotification()
n.alertBody = "\(nam) \(wat)"
n.userInfo = ["id": id, "t":type.rawValue]
n.soundName = UILocalNotificationDefaultSoundName
n.category = "call_chat"
app.scheduleLocalNotification(n)

我在

中打印userInfo

func application(_ application: UIApplication, didReceive notification: UILocalNotification)

直到这里一切都很好。但我需要稍后解除一些具有相同ID的通知并创建新的通知。当我尝试使用UIApplication.shared.scheduledLocalNotifications时,所有这些内容在iOS9中都有userInfo==nil,在iOS10 beta中有userInfo==["":""]

1 个答案:

答案 0 :(得分:0)

所以,最后我发现,scheduledLocalNotifications不包含已经显示的通知。唯一的方法是将它们存储在数组中,或者像here一样使用NSKeyArchiver