是否有可能通过发送静默推送通知来启动应用程序,以便确实触发了重新启动,并给了我一些运行时间?
我注意到我的用户公平分享了我的应用程序.由于我非常依赖后台提取,这是一个问题.我的想法是发送静默推送通知以在后台启动应用程序并触发后台提取.
解决方法 简答:不,这是不可能的.详情:
当服务器上有任何新内容时,您将向您的应用程序发送远程通知以通知相关内容. (远程通知实际上只是设置了content-available标志的普通推送通知)
当应用程序收到此远程通知时,它会调用以下方法:
- (voID)application:(UIApplication *)applicationdIDReceiveRemoteNotification:(NSDictionary *)userInfofetchCompletionHandler:(voID (^)(UIBackgroundFetchResult result))handler
在这种方法的文档中,它写得很清楚:
However,the system does not automatically launch your app if the user
has force-quit it. In that situation,the user must @R_189_4404@ your app
or restart the device before the system attempts to launch your app
automatically again.
参考:
> objc.io: Remote Notifications
> Apple Doc about application:didReceiveRemoteNotification:fetchCompletionHandler:
以上是内存溢出为你收集整理的ios – 在终止后通过推送通知启动应用程序全部内容,希望文章能够帮你解决ios – 在终止后通过推送通知启动应用程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)