does anyone know how to dial programmatically a phone number that includes number and access code using iOS sdk.

EX:

number: 900-3440-567 Access Code: 65445

link|improve this question

feedback

4 Answers

UIDevice *device = [UIDevice currentDevice];
if ([[device model] isEqualToString:@"iPhone"] ) {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:130-032-2837"]]];
} else {
    UIAlertView *Notpermitted=[[UIAlertView alloc] initWithTitle:@"Alert" message:@"Your device doesn't support this feature." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [Notpermitted show];
    [Notpermitted release];
}
link|improve this answer
1  
I feel exactly the opposite, Jon. If the poster wants to know how to do something programmatically, isn’t code what he’s most after? – zoul Mar 28 '11 at 9:08
4  
hi jon ..i think posting code is not so bad ..may b it helps someone . and saves his time (time spend on googling) – vijay singh adhikari Mar 28 '11 at 9:13
thanks guys for posting code it really helps but what about the Access Code how to dial this automatically for a meeting ? – Shahid Aslam Mar 28 '11 at 13:14
feedback

You can programmatically dial phone numbers using UIApplication's openURL: method (see example below). I'm unsure if access codes are supported, but this is at least a starting point.

NSURL *URL = [NSURL URLWithString:@"tel://900-3440-567"];
[[UIApplication sharedApplication] openURL:URL];

Edit: See the Apple URL Scheme Reference and the UIApplication Class Reference for more information.

link|improve this answer
is it posssible with // ? – Cocoa Matters Jan 19 at 6:14
feedback

follow the tutorial

http://www.makebetterthings.com/blogs/iphone/open-phone-sms-email-map-and-browser-apps-in-iphone-sdk/

to call a number use -

NSURL *url = [NSURL URLWithString:@"tel://012-4325-234"];
[[UIApplication sharedApplication] openURL:url];

to open your app after call finished use -

NSURL *url = [NSURL URLWithString:@"telprompt://012-4325-234"];
[[UIApplication sharedApplication] openURL:url];
link|improve this answer
url not working – Shahid Aslam Jan 20 at 5:28
feedback

You can use Phone urls to invoke the Phone application to dial a number for you. See this reference.

The downside is that once the call is finished, user will endup in the Phone application. But I am afraid there is no solution to that problem. iOS doesn't allow any application to directly initiate a call because of security and privacy reasons.

You can use comma for introducing pause(s) while dialing a number.

link|improve this answer
Thanks But their are plenty of apps doing this in iOS – Shahid Aslam Mar 28 '11 at 13:08
1  
@Shahid: Then why all answers point only to phone URLs only? – Hemant Mar 29 '11 at 4:19
people's choice, Ah! no worries – Shahid Aslam Mar 29 '11 at 8:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.