从iphone应用程序拨打电话而不从ios sdk4.0退出它

发布于 2024-10-06 16:19:00 字数 212 浏览 0 评论 0原文

我想知道在 ios 4.0 及更高版本中是否有任何方法可以在不退出应用程序的情况下从应用程序进行调用。

我已经研究过这个问题,并且知道在 iOS 3.1 之前他们是没有办法的。所以我想知道iOS 4是否支持它。需要 UIApplication 应用程序之外的其他解决方案

] openURL:[NSURL URLWithString:@"tel://8005551212"]];

i want to know whether their is any way in ios 4.0 and onwards to make a call from application without exiting the application.

I have worked on this and got to know that their is not any way till iOS 3.1. So I want to know is iOS 4 supports it or not. Need Some other solution than that of

UIApplication application] openURL:[NSURL URLWithString:@"tel://8005551212"]];

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

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

发布评论

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

评论(1

与之呼应 2024-10-13 16:19:00

您可以

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://8005551212"]];

在 iOS 4.x 上使用它。

You can use

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://8005551212"]];

for iOS 4.x it works.

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