通过本地通知启动已终止应用程序的正确方法
应用程序终止后,我们可以使用本地通知开始运行应用程序吗?
我的问题是,当我的应用程序在后台运行并且本地通知出现时,该应用程序可以正常工作。
但是一旦应用程序被杀死或从后台终止,然后如果出现本地通知,那么我的应用程序就会崩溃。
可以做什么?
请帮助和建议
谢谢
Can we start running the app using Local Notification once the app is terminated?
My problem is that when my app is in background and the local notifications come then the app works fine.
but once app is killed or terminated from background and then if local notifications come, then my app crashes.
What could be done?
Please Help and Suggest
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在你的
如果收到本地通知,您应该在应用程序委托中的 方法中处理启动应用程序。你在这样做吗?
in your
method in the app delegate you should handle launching the application if the local notification was received. Are you doing that?
要寻找的区域肯定是 didFinishLaunchingWithOptions 的 launchOptions。
The area to look for is definitely launchOptions for didFinishLaunchingWithOptions.