我正在处理IOS 10上的推送通知。当应用程序处于非活动状态/已关闭并收到通知时,我可以通过
获取userinfo(通知有效负载)NSDictionary *info = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey];
但如果我直接点击应用图标(不是通知徽章),我无法找到获取通知的有效负载。推荐此post并尝试通过写入
中的文件进行访问 didReceiveRemoteNotification:userInfo
fetchCompletionHandler:^(UIBackgroundFetchResult handler)
{ Logging userinfo with NSLog to verify, but I don't see any log entry}
在didFinishLaunchingWithOptions
读回来,但没有运气。是否有其他IOS方法可用于此用例?