Possible Duplicate:
How to use tel: with * (star, asterisk) or # (hash, pound) on iOs?

I need to initiate a call which also enters an id separated by #

The problem is that as soon as I insert this special character the method does not fire (as explained in the doc, I know)

Also stringByAddingPercentEscapesUsingEncoding does not change anything.

Is there a workaround? Can I send /simulate key strokes ?

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345#2"]]; <- because of the # it does not fire.

Thanks very much....

link|improve this question

Duplicate of stackoverflow.com/q/4660951/40961 – David Freitas Feb 24 at 9:07
feedback

closed as exact duplicate by casperOne Feb 27 at 17:03

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 1 down vote accepted

I think it's not possible. And in another forum someone asked Apple about that, but never get an answer back

link|improve this answer
current situation - not possible (again) or better: not allowed... – user387184 Feb 2 '11 at 21:35
feedback

CTCallDialWithID(@"12345#2", -1);

and link with CoreTelephony.

link|improve this answer
unfortunately this doesn't fire neither, but thanks for the hint! – user387184 Dec 23 '10 at 15:35
check the edited answer – KingofBliss Dec 23 '10 at 15:41
Oh yes, this works exactly as required - the only question now left is regarding appstore acceptance as I read in other places....and how would one know which solution is being used for the call... – user387184 Dec 23 '10 at 17:32
Appstore will surely accept this.. check the app store for iCallREdialer app, it is implemented using core telephony only. – KingofBliss Dec 25 '10 at 6:17
1  
FYI: Appstore rejected this solution, since it uses private API – user387184 Feb 5 '11 at 4:09
show 2 more comments
feedback

According to RFC2806 you've got a 'post-dial' part that seemingly let's you do what you want. Try:

tel:12345;postd=#2
link|improve this answer
unfortunately this doesn't fire as well, but thanks for the hint! – user387184 Dec 23 '10 at 15:35
feedback

How about this link ?

link|improve this answer
this one inserts p for pause instead of #, this works but is not inserting the special # I need – user387184 Dec 23 '10 at 15:22
feedback

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