tags:

views:

180

answers:

1

Please suggest me to achieve the below requirement using iphone SDK.

1) Programatically Dial a Phone Number through the iPhone SDK

2) Send additional DTMF after the number is called.

After googled found tel URL scheme is available to make a call. Not sure about sending DTMF tones. Please help me.

https://developer.apple.com/iphone/library/featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html

Thanks

A: 

1) is done by opening an url wil the tel protocol like

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:1-234-567890"]];

2) is afaik not possible in the current SDK

stigi
Thanks for your response. Touch Dial Emoji apps supports to send DTMF http://iphoneappsupport.blogspot.com/
datag
Oh right. Interesting. Did you already try it?
stigi
nope. I googled and found this app(Touch Dial Emoji). I have to send DTMF over the call. Dont know how to do. Let me know if you have any idea how Touch Dial Emoji implemented. Thanks
datag