我想在 viewdidLoad 中拨打电话

发布于 2024-10-13 11:37:36 字数 35 浏览 2 评论 0原文

我想在调用 viewdidload 后立即拨打任何号码?

I want to make call to any number as soon as viewdidload is called ?

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

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

发布评论

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

评论(1

平定天下 2024-10-20 11:37:36

这可能对您有帮助: http://developer.apple.com /library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html

基本上,他们说您可以使用 URL 对象拨打电话,如下所示:

[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"tel:1-408-555-5555"]];

不幸的是,这与您目前获得的控制权差不多。快乐编码。

This might help you: http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html

Basically, they say that you can place a call using a URL object, like so:

[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:@"tel:1-408-555-5555"]];

Unfortunately, that's about as much control as you get at the moment. Happy coding.

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