According to Apple\'s documentation, in order to make phone call from my app, I need to implement the following protocols:
HTML link:
The simplest way seems to be:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt:0123456789"]];
You will get a prompt and your app will regain focus after the call is finished.