I want the user to make a call from my application

Something like this post, but instead of sending an email, make a call http://stackoverflow.com/questions/310946/how-can-i-send-mail-from-an-iphone-application

Tanks!

link|improve this question

53% accept rate
Removed cocoa and mac tags as this has nothing to do with either of those areas. – theMikeSwan Aug 25 '10 at 21:24
feedback

1 Answer

up vote 6 down vote accepted

NOTE: This will only work on an actual iPhone (not the simulator)

[[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"tel:9995551234"]];
link|improve this answer
This code work in simulator? – caeycae Aug 25 '10 at 13:45
It will do nothing if you are in the simulator, but it works – caeycae Aug 25 '10 at 13:49
@caeycae: Sorry, I should have mentioned that. Glad it worked out for you. – sdolan Aug 25 '10 at 15:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.