
xcode make phone call - Our iPhone application required a feature to call over any given mobile or phone number. Just wondering how to enable this feature in my application. Though i have see there are number of application on iTunes that includes this feature. Please suggest me.
Thanks!

tel URL scheme - Using the tel URL scheme you can dial or initiate the dialer in your iPhone application. See the code below...
 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12125551212"]];
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.