仅在应用程序处于后台时调用的静默通知回调方法

Silent notification callback method called only when app is in background

我注册了远程通知,它工作得很好。现在我正在实施静默通知。为此,我启用了后台远程通知,应用程序从网络下载内容。

正在发送,

{"aps": {"content-available": 1}}

它调用以下回调方法,但仅当应用程序处于后台时:

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler

并且在这种方法中,我在从服务器下载一些数据后触发本地通知。但是当应用程序不在后台时,这个方法根本不会调用。

Push Notification 上的 Apple 文档中,他们说:

"When a silent notification arrives, iOS wakes up your app in the background so that you can get new data from your server or do background information processing."

理想情况下,静默远程通知应该在后台唤醒我的应用程序并且本地通知应该工作。

有什么想法吗?

阅读大量苹果文档后,我发现如果用户强制退出应用程序,方法 (didReceiveRemoteNotification: fetchCompletionHandler) 将不会调用。

如所写,(link) 但是,如果用户强行退出,系统不会自动启动您的应用程序。在这种情况下,用户必须在系统尝试再次自动启动您的应用程序之前重新启动您的应用程序或重新启动设备。