Tagged Questions

5
votes
4answers
5k views

How to tell if Cocoa Touch device can make calls?

I'm writing an iPhone application that provides a button to call a phone number. I'm using code like the following to dial the number using a tel: URL in the usual way: NSURL* contactTelURL = [NSURL ...
4
votes
3answers
74 views

Interaction with phone on iPhone

Our company has recent started switching from Blackberries to iPhones and the biggest complaint (such as it is) is that the you can not start a dial sequence (that dials a number, waits for a pickup, ...
2
votes
1answer
574 views

Dealing with international phone numbers on iPhone

I have an app which uses contact data in the following ways: To send an SMS from the client To send an SMS from our server To upload a user's phone number to a database where others can match ...
1
vote
1answer
367 views

DTMF # and * workaround in iOS4?

I have read all the posts about DTMF and iPhone. I know that the characters "#" and "*" are disallowed by the SDK for security reasons. I have tried the stringByAddingPercentEscapesUsingEncoding: ...
0
votes
3answers
234 views

Dialing a number

I read some reference about how to make a call programmatically on the iPhone, so I put this in my code : UIApplication *app = [UIApplication sharedApplication]; NSString *urlString = [NSString ...
0
votes
1answer
525 views

International Assist on iPhone

Does anyone know if the International Assist feature on the iPhone works when dialing a number using the tel:// URL scheme from an application? For those unfamiliar, IA automatically prefixes the "+1" ...