这是我的ReceiveRemoteNotification代码。
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
PFPush.handlePush(userInfo)
if application.applicationState == UIApplicationState.Inactive {
PFAnalytics.trackAppOpenedWithRemoteNotificationPayload(userInfo)
}
let notifiAlert = UIAlertView()
let aps = userInfo["aps"] as? [NSObject: AnyObject]
let alert1 = aps!["alerts"] as? String
let link1 = aps!["links"] as? String
notifiAlert.title = alert1!
notifiAlert.message = link1
notifiAlert.addButtonWithTitle("OK")
notifiAlert.show()
print(userInfo)
print("success")
}
我试图从我的网络接收JSON数据,我的JSON看起来像:
{"aps":{"alerts":"3","links":"","sounds":"default"}}
我确实收到了Json数据并将数据转换为视图。使用此代码:
let aps = userInfo["aps"] as? [NSObject: AnyObject]
let alert1 = aps!["alerts"] as? String
let link1 = aps!["links"] as? String
notifiAlert.title = alert1!
notifiAlert.message = link1
notifiAlert.addButtonWithTitle("OK")
notifiAlert.show()
print(userInfo)
print("success")
}
但是我只在我使用该应用程序时收到,但如果我不使用,我将无法收到通知。但我的手机震动或发出声音,但没有消息。
我错过了什么吗?谢谢!
已添加以下是我的完整代码http://pastebin.com/mkFiq6Cs
修改
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
if application.applicationState == UIApplicationState.Inactive {
PFAnalytics.trackAppOpenedWithRemoteNotificationPayload(userInfo)
}
let aps = userInfo["aps"] as? [NSObject: AnyObject]
let alert1 = aps!["alerts"] as? String
let link1 = aps!["links"] as? String
notifiAlert.title = alert1!
notifiAlert.message = link1
notifiAlert.addButtonWithTitle("OK")
notifiAlert.show()
print(userInfo)
print("success")
}
所以我必须添加这段代码:
func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) {
if let userInfo = notification.userInfo {
let aps = userInfo["aps"] as? [NSObject: AnyObject]
let alert2 = aps!["alerts"] as? String
let link2 = aps!["links"] as? String
print("didReceiveLocalNotification: \(aps)")
print("didReceiveLocalNotification: \(alert2)")
print("didReceiveLocalNotification: \(link2)")
}
}
这是在didFinishLaunchingOption:
if let options = launchOptions {
if let notification = options[UIApplicationLaunchOptionsLocalNotificationKey] as? UILocalNotification {
if let userInfo = notification.userInfo {
let customField1 = userInfo["CustomField1"] as! String
// do something neat here
}
}
}
解决
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
PFPush.handlePush(userInfo)
if application.applicationState == UIApplicationState.Inactive {
PFAnalytics.trackAppOpenedWithRemoteNotificationPayload(userInfo)
}
let notifiAlert = UIAlertView()
if let aps = userInfo["aps"] as? [NSObject: AnyObject],
let alert1 = aps["alert"] as? String,
let content1 = aps["content-available"] as? String,
let link1 = userInfo["links"] as? String {
notifiAlert.title = alert1
notifiAlert.message = link1
notifiAlert.addButtonWithTitle("OK")
notifiAlert.show()
}
print(userInfo)
print("success")
completionHandler(UIBackgroundFetchResult.NewData)
}
这完美无缺。 !感谢@tskulbru
答案 0 :(得分:1)
这是因为application(_:didReceiveRemoteNotification:)
仅在应用程序处于活动状态时被调用。它无法处理应用程序非活动/后台远程通知。
如果远程通知到达时应用程序未运行,该方法将启动应用程序并在启动选项字典中提供相应的信息。该应用程序不会调用此方法来处理该远程通知。相反,您对
application:willFinishLaunchingWithOptions:
或application:didFinishLaunchingWithOptions:
方法的实现需要获取远程通知有效负载数据并进行适当响应。
如上所述,application:didReceiveRemoteNotification
如果应该能够处理后台通知,则需要额外实施。
如果您只想要一种方法来处理所有好东西,并且没有一堆不同的方法来实现基本相同的东西,Apple提供了一个名为application:didReceiveRemoteNotification:fetchCompletionHandler:
的方法来处理这一切都适合你。
您需要实现application:didReceiveRemoteNotification:fetchCompletionHandler:
方法而不是此方法来处理后台通知。这会处理后台任务,然后您可以在完成后使用适当的枚举调用completionHandler(.NoData
/ .NewData
/ .Failed
)。
如果您希望在应用程序处于活动状态时收到远程通知时显示本地通知,则需要使用上述方法创建该通知。如果要在应用程序处于活动状态时显示警报视图,则还需要处理该方法中的两个方案。我的建议是转而使用application:didReceiveRemoteNotification:fetchCompletionHandler:
并实现其中的所有内容。
所以在你的情况下,我会做这样的事情:
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
PFPush.handlePush(userInfo)
if application.applicationState == UIApplicationState.Inactive {
PFAnalytics.trackAppOpenedWithRemoteNotificationPayload(userInfo)
} else {
let notifiAlert = UIAlertView()
if let aps = userInfo["aps"] as? [NSObject: AnyObject],
let alert1 = aps["alerts"] as? String,
let link1 = aps["links"] as? String {
notifiAlert.title = alert1
notifiAlert.message = link1
notifiAlert.addButtonWithTitle("OK")
notifiAlert.show()
}
print(userInfo)
print("success")
}
completionHandler(UIBackgroundFetchResult.NewData)
}
我没有对代码进行测试,但它应该是没有太多变化的类似代码。我没有使用Parse所以我不确切地知道PFPush.handlePush(userInfo)
的确是什么,你需要查看文档。
在你的情况下:
{"aps":{"alert":"alert content","sound":"default", "content-available": 1}, "links":""}
你有复数形式而不是单一形式。看看我给出的允许密钥的网址。 {a}字典中不存在links
键,这意味着它是一个自定义键,需要放在字典之外。
请注意,这是标准推送通知方式,使用Parse时可能不正确。