tech.samar
tech.samar

Reputation: 152

after call end, relaunch the previous app in iphone

I can make a call from my app by use this APIs.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:XXXXXX"]];

I would like to return to my app where I left after the users ends the call. Is that possible?

Upvotes: 1

Views: 810

Answers (2)

hawshy
hawshy

Reputation: 183

Try this:

UIWebView *callingWebview;

[callingWebview loadRequest:[NSURLRequest requestWithURL:]];

Upvotes: 3

elmac
elmac

Reputation: 228

no it's not possible

Upvotes: 1

Related Questions