I made a button, and link the button to the following openPhone method. But it didn't work. Error message shows "Thread 1:Program received signal: "SIGABRT".".

Should I do anything else that I do not know to let it work? Thanks

-(IBAction)openPhone{
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://+886227637978"]];
}
link|improve this question

43% accept rate
I don't think the crash is happening because of this method of yours. Can you show the message displayed in your console? – Dip Dhingani Oct 5 '11 at 4:21
feedback

2 Answers

try this:- self.phone is NSString that contain phone number.

    NSString *telephoneString=[self.phone stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];

    NSMutableString *str1=[[NSMutableString alloc] initWithString:telephoneString];
    [str1 setString:[str1 stringByReplacingOccurrencesOfString:@"(" withString:@""]];
    [str1 setString:[str1 stringByReplacingOccurrencesOfString:@")" withString:@""]];
    [str1 setString:[str1 stringByReplacingOccurrencesOfString:@"-" withString:@""]];
    [str1 setString:[str1 stringByReplacingOccurrencesOfString:@" " withString:@""]];
    telephoneString = [@"tel://" stringByAppendingString:str1];
    [str1 release];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telephoneString]];
link|improve this answer
This was very helpful. Thanks! – Buyin Brian Nov 29 '11 at 15:41
Accept the answer if you think it works for you and doing this will increase your acceptance rate and other people will let know that you got solution also.Please dont mind. – Gypsa Nov 30 '11 at 3:50
If it were my question, I definitely would have accepted it. – Buyin Brian Nov 30 '11 at 16:29
feedback
-(IBAction)openPhone:(id)sender{
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://+886227637978"]];
}

You may also need to remove the + in tel:// . I haven't tested any of this though. The phone number also looks kind of long. Maybe it is just a country thing though.

Also be sure that it is connected in your IB and is specified in your .h

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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