UIApplication 的 openURL 使我的应用程序崩溃

发布于 2024-11-03 13:58:38 字数 131 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零崎曲识 2024-11-10 13:58:38

您可能需要保留 URL 对象。这曾经是我的问题

It may be possible that you need to retain the URL object. That was once the issue for me

世态炎凉 2024-11-10 13:58:38

确保您

- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

在 appdelegate 中使用而不是

- (void)applicationDidFinishLaunching:(UIApplication *)application

make sure that you are using

- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

in your appdelegate rather than

- (void)applicationDidFinishLaunching:(UIApplication *)application
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文