iPhone如何拨打以*开头的电话?
在我的应用中,我想拨打*111这个号码,当我使用这个URL tel:*111拨打电话时,却无法拨打成功,请给我一些指示,非常感谢。
[[UIApplication sharedApplication] openURL:@"tel:*111"]
没工作。但当删除 *
时它将起作用:
[[UIApplication sharedApplication] openURL:@"tel:111"];
In my application, I want to call the number *111, when I use this URL tel:*111 to call, but can't make call success, please give me some indicate, thank you very much.
[[UIApplication sharedApplication] openURL:@"tel:*111"]
was not work. but it will work when remove *
:
[[UIApplication sharedApplication] openURL:@"tel:111"];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。来自 Apple URL 方案参考:
It's not possible. From the Apple URL Scheme Reference: