Return to app behavior after phone call different in native code than UIWebView

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.

Leave a Comment