문제

How do I know that I can not call from the device? For example for e-mail: [MFMailComposeViewController canSendMail] Anything for calling?

도움이 되었습니까?

해결책

if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tel:+123456"]]) {
...
}

다른 팁

This can be used for calling :

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12125551212"]];

Please refer this link for more:

iPhoneURLScheme Reference

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top