vote up 3 vote down star
2

Hi,

I'm trying to initiate a call from within an iPhone app.

This related code works and opens Safari as expected:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.apple.com"]];

But, when I replace the http URL with a tel URL the resulting code does not invoke the phone app:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:3035551212"]];

No exceptions or alerts are generated (in the simulator or on a device).

Any idea what the problem might be with my invocation?

Thanks.

flag
1  
it should work, maybe there is something prior in the code. what is the device ? an ipod touch can't phone ... – CiNN May 1 at 17:10
It's an iPhone. – denton May 1 at 17:13
I can't get this to work using tel:15555551234 – bentford Oct 27 at 3:09

4 Answers

vote up 1 vote down

I just ran into this when trying to add a "Call" button to a UIAlertView. I had the following code to handle the call:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (buttonIndex != 0)
    {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:1-602-555-1212"]];
    }
}

It wouldn't open anything, just like you. I even tried a regular http URL. It turned out I had forgotten to set the delegate to self. That's probably your problem also.

link|flag
vote up 1 vote down

Haven't had any problems with it using tel:{phone-number} and invoking it the same way you are. Only works on the iPhone device, though.

One thing I did have to do was strip out extraneous characters (like all parentheses, spaces, dashes and dots) out of the phone string. Some of the examples above (but not the original post) have dashes. That might be the problem.

link|flag
Dashes are OK per the documentation: developer.apple.com/iphone/library/… – bentford Oct 27 at 5:24
vote up 0 vote down

The iphone will dial a number using either of the formats listed below. But, it will do nothing if you are in the simulator. It took me 30 minutes of banging my head to figure this out.

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel://15415551234"]];

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel:15415551234"]];

[[UIApplication sharedApplication] 
                    openURL:[NSURL URLWithString:@"tel:1-541-555-1234"]];

Link for Apple documentation on the tel: url scheme

Link for openURL documentation

link|flag
vote up -1 vote down

The URL should be tel://3035551212 and not tel:3035551212... Add that // and it should work.

link|flag
I tried that earlier without success. Thanks. – denton May 1 at 18:11
Not true. Either works and Apple's documentation suggests the poster's version: developer.apple.com/iphone/library/… – bbrown May 13 at 2:22

Your Answer

Get an OpenID
or

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