UIApplication 的 openURL 使我的应用程序崩溃
我正在使用 UIApplication 的 openURL: 方法在 Safari 中打开网站。当用户返回应用程序(快速切换)时,它会重新启动。这意味着我的应用程序已退出而不是进入后台。
有人有同样的问题吗?有什么想法吗?先感谢您。
I'm using UIApplication's openURL: method to open a website in Safari. When the user came back to the app (fast switching), it relaunched. It means that my app was quit instead of going to the background.
Does anyone have the same issue? Any ideas? Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要保留 URL 对象。这曾经是我的问题
It may be possible that you need to retain the URL object. That was once the issue for me
确保您
在 appdelegate 中使用而不是
make sure that you are using
in your appdelegate rather than