Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

up vote 2 down vote accepted

This isn't perfect, but you could identify that "call" was pressed instead of "cancel" by listening for the UIApplicationSuspendedNotification (you'd have to add some logic to ignore this event when someone pushed the 'home' key, or was accepting an incoming call... maybe by adding/removing the observer around the logic where the phone number is being presented):

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(suspended:) name:@"UIApplicationSuspendedNotification" object:nil];

-(void)suspended:(NSNotification *) notification
{
    NSLog(@"Suspended");
}
share|improve this answer
1  
seems legit to me.. – Pranjal Bikash Das Dec 6 '12 at 14:39

As per iOS terms it is not possible. when completing the call can't redirect to Application.

In Jailbroken Phones only it's possible.

share|improve this answer

When application executes above code, it will exit current application & navigate to call application of iPhone. So, it is not possible for the application to identify that weather user has pressed call or cancel.. Hope,it will help you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.