Our application lets users call phone numbers. Users would like to be able to block their caller ID.
On other platforms, we let the user specify a custom dialing prefix. For instance, on my cell provider it's #31#.
I've tried two approaches so far.
First:
id url = [NSURL URLWithString: @"tel:#31#0000000"]
// produces nil
Second:
i...
I'm working on a mobile phone web app and I have several text fields that could benefit from iPhone's will adjust the keyboard for the user but I'm worried about breaking backwards compatability. What I'm hoping is that browsers/phone that support this can assist the user and other browser will fall back to a standard text field? Is thi...
I would lie to place a call in my app (I can use the tel:) but I would like to return to my app where I left after the users hangs up.
Is that possible?
...
I'm currently developing an iPhone app for a mall.
One of the features is the ability to phone a mall tenant from within the app. I'm using
NSURL *url = [[NSURL alloc] initWithString:@"tel:1(480)555-5555"];
[[UIApplication sharedApplication] openURL:url];
It works as I expect it to, no confirmation dialog and remains in the phone a...
Basically, the input field is just a string. People input their phone number in various formats. I need a regular expression to find and convert those numbers into links.
Input examples:
(201) 555-1212
(201)555-1212
201-555-1212
555-1212
Here's what I want:
<a href="tel:(201)555-1212">(201) 555-1212</a> - Notice the space is gone
<...
Hi All I'm trying to get the <a href='tel:*120*5xxxx#' /> to work but it does nto like the ussd part ?? Is there a way to use tel: with a ussd string ?
PS. xxxx above represents numeric value's and yes i have tried urlencoding.
...
I want the user to make a call from my application
Something like this post, but instead of sending an email, make a call
http://stackoverflow.com/questions/310946/how-can-i-send-mail-from-an-iphone-application
Tanks!
...