当应用程序完全关闭时,我试图接收静默推送通知,但我没有收到推送,我错过了什么?
我在拆分中添加:必需的后台模式->应用程序下载内容以响应推送通知
我在
AppDelagate
:func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) { completionHandler(UIBackgroundFetchResult.NewData); JLToast.makeText("background").show()}
我发送推送:
aps { 内容可用:1 }
当应用程序在后台时,我会收到静默推送通知,但是当应用程序在后台(完全被击落)时,我没有收到推送。
什么不见了?