如何知道iPhone/iPod Phone是否可以使用?

发布于 2024-08-08 19:45:41 字数 193 浏览 6 评论 0原文

确定当前设备是否支持电话的最佳方法是什么?

iPod Touch 根本不支持,iPhone 仅支持输入 SIM 密码后拨打电话。

是否有类似的方法,例如 [MFMailComposeViewController canSendMail] 用于邮件?

提前谢谢:)

what is the best way to find out whether the current device supports a phone call?

iPod Touch does not support it at all and iPhone does only support calls after entering the SIM password.

Is there a similar method like [MFMailComposeViewController canSendMail] for mail?

Thx in advance :)

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

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

发布评论

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

评论(2

晨曦慕雪 2024-08-15 19:45:41

我问同样的问题,答案是这样的:

BOOL canCall = [[UIApplication sharedApplication]
                       canOpenURL:[NSURL URLWithString:@"tel:1234567"]];

I asked this same question, and the answer is this:

BOOL canCall = [[UIApplication sharedApplication]
                       canOpenURL:[NSURL URLWithString:@"tel:1234567"]];
笑饮青盏花 2024-08-15 19:45:41

我忘记了具体的方法,但我相信有一种方法可以检查设备是否响应 tel: URL 处理程序。

I forget exactly how, but I believe there's a way to check if the device responds to the tel: URL handler.

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