苹果推送通知 – iOS 10静音推送通知不触发背景应用程序

我有一个应用程序,我正在尝试接收和处理SILENT推送通知.

我正在注册APNs如下:

UNUserNotificationCenter.currentNotificationCenter().delegate = self
UNUserNotificationCenter.currentNotificationCenter().requestAuthorizationWithOptions([.Badge,.Sound,.Alert]) {(granted,error) in
    if granted {
        application.registerForRemoteNotifications()
    }
}

实现:

func userNotificationCenter(center: UNUserNotificationCenter,didReceiveNotificationResponse response: UNNotificationResponse,withCompletionHandler completionHandler: () -> Void) {
    // Handle notification
}

func userNotificationCenter(center: UNUserNotificationCenter,willPresentNotification notification: UNNotification,withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {
    // Handle notification
}

该应用程序具有UIBackgroundModes提取和远程通知

APN内容如下所示:

{
    "aps":{
        "content-available":1,"badge":0
    },"action":"shareDelete","shareId":633
}

当应用程序处于前台时,当收到通知时,userNotificationCenter(center:withCompletionHandler:willPresentNotification)将被触发,但是当应用程序背景时,没有任何反应.

我可以看到通过更改徽章号码收到APN,但在应用程序中没有触发任何内容.

我失踪了什么

(也在Apple开发论坛上询问)

解决方法

方法
func userNotificationCenter(center: UNUserNotificationCenter,withCompletionHandler completionHandler: () -> Void) {
    // Handle notification
}

用户点击通知或在Apple Watch上查看时呼叫:

Called to let your app know which action was selected by the user for a given notification.

你需要实现旧的方法

func application(_ application: UIApplication,didReceiveRemoteNotification userInfo: [AnyHashable : Any],fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {

}

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...