Raptor
Raptor

Reputation: 54212

Call out Phone App in iPhone & fill in a phone number ( no dial )

I know I can call out Phone App in iPhone & dial a phone number by:

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

However, is there any way to call out Phone App & fill in a phone number only (no need to dial the number)?

Upvotes: 0

Views: 571

Answers (1)

Fletch
Fletch

Reputation: 963

It doesn't appear so, according to the official docs at http://developer.apple.com/library/ios/ipad/#featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html

Sorry.

If you're trying to predial (eg for a calling card) then you could get input from the user, prepend your number, then call the tel URL in one feel swoop. Is that the sort of thing you're trying to accomplish?

Upvotes: 1

Related Questions