电话链接 iPhone SDK - 如何返回应用程序
单击电话链接 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会。尽管如果您使用 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.不,不幸的是,没有办法实现这一点,因为单击链接总是会首先终止您的应用程序,然后启动新的应用程序。
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.