Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎么知道我不能从设备拨打电话?例如电子邮件:[MFMailComposeViewController canSendMail] 有什么可以打电话的吗?
[MFMailComposeViewController canSendMail]
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tel:+123456"]]) { ... }
这可用于调用:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12125551212"]];
请参考此链接了解更多信息:
iPhoneURLScheme 参考