does anyone know how to dial a phone number programmatically by calling an iphone sdk function which launches the phone app with a phone number as a parameter?
cheers!
cheers!
use the tel:// url, just like you would want to navigate to a web page with an http:// url. you may use this as a hyperlink on a web page, or you may take a look at the "launchme" application in the developers page for how to use openURL. note that the phone interface will be launched, but before the number is actually dialed, the user needs to confirm the operation.
<a href="tel:1-408-555-5555">1-408-555-5555</a>
Hi all,
Just want to make sure - before I plunge into development...
- Can I initiate a phone call to a specific phone number (and name) from within my own application ?
- Will it always involve the user seeing Saffari on screen, and having to approve the dialing (on every call) ?
- Can I make a call to a number with "extra digits" (i.e. call 1-800-222-3333, wait for answer, then dial other touch-tone digits, wait 2 sec, then dial ...) ?
- Can my app be notified about telephony events, such as call progress, incoming call, etc. ?
Thanks in advance !
Couldn't you just throw in a few pauses before the tones?
Try escaping them by putting a \ in front of them. They're special characters so are likely being stripped.
Couldn't you just throw in a few pauses before the tones?
use the tel:// url, just like you would want to navigate to a web page with an http:// url. you may use this as a hyperlink on a web page, or you may take a look at the "launchme" application in the developers page for how to use openURL. note that the phone interface will be launched, but before the number is actually dialed, the user needs to confirm the operation.
anyone know how to programmatically dial a contact in my address book?
I know there is a way to dial without confirmation (which I think means using something other than the tel: url). There are a ton of apps in the app store, so how are they doing it? I hate when these features are hidden and to implement a simple feature you spend more time trying to find it instead of programming... Someone help!
Hi,
How do I represent pauses ?
When I tried commas - it just ignored them.