userInfo字典的根目录项
"aps"不是
"alert"。
尝试以下方法:
if let aps = userInfo["aps"] as? NSDictionary { if let alert = aps["alert"] as? NSDictionary { if let message = alert["message"] as? NSString {//Do stuff } } else if let alert = aps["alert"] as? NSString { //Do stuff }}
请参阅推送通知文档
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)