I'm trying to do phone call from my native iPhone app on button click in xcode 5. After finishing the phone call, i'm getting the call summary display on my screen. After dismissing the call summary home screen is coming .
I want to return back to my app after finishing phone call.
I have tried with:
phnnoString=[@"telprompt://" stringByAppendingString:phnnoString];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:phnnoString]];
and
[webview loadRequest:[NSURLRequest requestWithURL:phnnoString]];
also but whenever call summary page is coming after phone call, app is not returning to foreground.
Thanks in advance....