I am making an application in which there is a text field to enter phone number, now I want whenever user put number on that text field, there must be a button get generate to call on that particular number.

Anyone know about this functionality, then please help me.

Thanks alot.

link|improve this question

36% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Assume self.textField is a UITextField where you can enter the number. Then add the following event listener listener to your 'call' button:

- (IBAction)makeCall{
    NSURL *target = [[[NSURL alloc] initWithString:[NSString stringWithFormat:@"tel:%@", self.textField.text]] autorelease];
    [[UIApplication sharedApplication] openURL:target];    
}
link|improve this answer
2  
I think you forgot to store the URL in a variable like so: NSURL *target = ... – Jakob W Jun 1 '11 at 8:25
@Jakob, thanks for your notice – NR4TR Jun 1 '11 at 8:29
feedback

Your Answer

 
or
required, but never shown

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