I am using the following code to dial number and testing with my device. It seems no confirmation is needed, correct?
NSURL *url = [NSURL UR
An alternative to the suitable solution already posted, you could consider using the telprompt URL scheme, e.g.
telprompt
NSURL *url = [NSURL URLWithString@"telprompt://12345678"]; [[UIApplication sharedApplication] openURL:url];