Reputation: 406
Is any body now if I can launch the phone app without number?? the user chose or wirte the phone number to call?
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:no number"]];
for launch the app phone call but no call with any number??
Thanks
Upvotes: 1
Views: 1038
Reputation: 50727
Apple won't allow this — there's no point in launching the Phone app if there is no number to dial.
If you just want to launch the app without dialing a number, you can always launch the app via the bundle id. You will need to search around the net on how to do this.
Upvotes: 1