up vote 3 down vote favorite
5
share [g+] share [fb]

I'd like to show or hide a button that lets a user make a phone call based on whether or not the user can actually make a call (iPhone or iPod touch). Is it possible to somehow detect if the phone app is available to the user in cocoa-touch? Or am i constrained to detecting the device type to make that distinction? I would rather check for functionality than static clients in case something changes down the line for whatever reason (not that iPod touch users could ever make non-voip phone calls anyways, but the code would be cleaner).

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
BOOL canMakePhoneCalls = [[UIApplication sharedApplication]
                           canOpenURL:[NSURL URLWithString:@"tel:5555555"]];
link|improve this answer
Thanks for the answer, i'll try it out as soon as i can! – Kevlar Sep 9 '09 at 5:16
I like this solution in particular because it allows a user to install some other app to support tel:// on a device missing hardware phone. – Billy Gray May 10 '10 at 16:07
feedback

Your Answer

 
or
required, but never shown

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