I donβt know if you really found a solution to pass the access code, but for me this code worked:
NSString *dialstring = [[NSString alloc] initWithFormat:@"tel:your_phonenumber,your_accessnumber"];
This will result in a dial string with the following values: tel:9003440567,65445
The remaining parts are controlled by the iOS phone application with the following command:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:dialstring]];
, in the line causes a pause in your telephone system (the one where you want to access the conference room) immediately after dialing the first number and establishing a connection. Thus, the telephone system has time to ask you about the access code (I think it should ask you how our system works). And after that, your access code should be transmitted.
BE A SIGN . Your access code will be transmitted in a non-secret manner. For example: Your displayed passcode will be displayed in the iPhone iPhone application as follows: 9003440567, 65445
rubybeginner Dec 6 '13 at 15:22 2013-12-06 15:22
source share