I need to return to my app after making a call from my app, so i use this code:
NSURL *url = [NSURL URLWithString:@"telprompt://123-4567-890"];
[[UIApplication sharedApplication] openURL:url];
When user presses button to execute this code, alert is shown with 2 buttons, "Call" and "Cancel".
How can i find out if user pressed "call" button?
