Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi iPhone developers, I want to add a feature in my iPhone app, they are: call to a phone number in my app after call end, relaunch the previous app. I know its not possible in iphone OS 3.2.. Is it possible in iOS 4? I need your help...

share|improve this question
Stack Overflow runs on reputation points. If I have answered your question, please kindly mark it as the accepted answer. Thanks! :) – esqew Aug 14 '10 at 4:34

1 Answer

up vote 4 down vote accepted

You can't call a number directly from your app. You can use this snippet to launch the phone app:

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

... and after the call is done it will return you to your app.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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