I used this code to make phone call:
NSString *phoneNumber = [@\"tel://\" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplicat
The website: http://www.raizlabs.com/dev/2014/04/getting-the-best-behavior-from-phone-call-requests-using-tel-in-an-ios-app/ has a discussion of whether to use telprompt (undocumented, Apple could potentially change the API without notice), and instead using a category that sends the number to a web view which opens it using telprompt. This has the advantage of not breaking if Apple does something odd.