I have implemented the ability to make a call from clicking on a row of descriptive tableview of my hotel; I used the URL scheme by writing the following code in method "didSelectRowAtIndexPath ":

NSString *phoneNumber=element.phone;                                       
[NSString *phoneNumberScheme = [NSString stringWithFormat:@"tel:%@ ", phoneNumber];
NSlog(phoneNumberScheme);                      
phoneNumberScheme = [phoneNumberScheme stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumberScheme]];

No error! With NSlog i verified that the number was read correctly and so it is(indeed on console appears tel:1-408-555-5555); The problem is that nothing happens!!! At this point (also based on something I read on the web) i have a doubt that I can't test this thing on simulator! Someone can tell me if I'm doing something wrong or if i can't test this "url scheme" on simulator?! Thanks

link|improve this question

78% accept rate
You have a space at the end of @"tel:%@ ". [@"tel:" stringByAppendingString:phoneNumber] is also somewhat cleaner. – tc. Jul 19 '10 at 16:41
What is the difference between my and your syntax? Thanks – Claudio Jul 20 '10 at 8:20
feedback

2 Answers

up vote 5 down vote accepted

To expand on seanny94's answer: the simulator doesn't support a lot of iOS's URL schemes, including those for the Phone, Maps, Youtube, and SMS apps. This is also the case for devices like the iPod touch and the iPad, which don't have phone capabilities; before using any URL scheme via -openURL:, you should check for support for that scheme using -canOpenURL:, which will return YES or NO depending on whether the current device supports the URL scheme you're using.

link|improve this answer
thank you very much – Claudio Jul 19 '10 at 16:51
feedback

You can't test a phone call (or any phone-based function, for that matter) in the Simulator. There is no support for it.

link|improve this answer
thank you very much – Claudio Jul 19 '10 at 16:51
feedback

Your Answer

 
or
required, but never shown

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