سؤال

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