电话链接 iPhone SDK - 如何返回应用程序

发布于 2024-08-30 12:02:49 字数 159 浏览 7 评论 0原文

单击电话链接 (tel:) 并使用

[[UIApplication sharedApplication] openURL:xyz]

例如,当用户结束通话时打开后,是否可以返回我的应用程序?

谢谢

Is it possible to return to my app once a phone link (tel:) has been clicked, and opened using

[[UIApplication sharedApplication] openURL:xyz]

For example, when the user ends the call?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦萦几度 2024-09-06 12:02:49

不会。尽管如果您使用 NSUserDefaults(或其他方式)存储状态,您可以返回到离开时的同一点;用户必须重新启动您的应用程序才能执行此操作。 《人机界面指南》中推荐了这种方法。

No. Although if you store your state using NSUserDefaults (or other means) you can return to the same point where you left; the user will have to relaunch your app to do this. This approach is recommended in the Human Interface Guidelines.

南七夏 2024-09-06 12:02:49

不,不幸的是,没有办法实现这一点,因为单击链接总是会首先终止您的应用程序,然后启动新的应用程序。

No, unfortunately there is no way to achieve this, since clicking a link will always first terminate your app and then start the new one.

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