tags:

views:

64

answers:

1

Hello All,

Can I Open the phone app on iPhone using url scheme? if yes then how? I know I can dial a number using this -

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

But I dont want to dial a number, I just want to opent the phone as I click on the phone icon on home page.

Thanks Saurabh

+1  A: 

The only recognized URL scheme to open the phone app is tel://

There is a nice summary of recognized URL schemes @ http://applookup.com/

TomH