Code or tutorial on how to make a call for an iphone app?

All iphone developers,

I am creating an iphone application in which I want the same object as custom clicks on a call button and make a phone call to that person.

Can anyone provide me with some code snippet or link links.

+2


source to share


1 answer


If you have a number you can try this



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

      

+4


source







All Articles