Possible duplicate:How to use tel: with * (asterisk, asterisk) or # (hash, pound) on iOS?
I need to initiate a call that also enters an identifier separated by #
The problem is that as soon as I insert this special character, the method does not work (as explained in the document, I know)
Also stringByAddingPercentEscapesUsingEncoding does not change anything.
Is there a workaround? Can I send / simulate keystrokes?
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345#2"]]; <- due to the fact that it does not work.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345#2"]];
Thank you very much....
I think it's impossible. And in another forum, someone asked Apple about this, but never received an answer.
CTCallDialWithID (@ "12345 # 2", -1);
and connection with CoreTelephony.
According to RFC2806 , you have a “after dialing” part that would seem to allow you to do what you want. Try:
tel:12345;postd=#2
Source: https://habr.com/ru/post/1333191/More articles:how many line types in visual c ++ - c ++WPF Drag and Drop - Get Original Source Information from DragEventArgs - c #jquery - Animated return to top of page when clicked - javascriptHow can I run maven tests against a previous deployed artifact of the same artifact? - mavenSelfHosted WCF Basic HTTP Binding does not support more than 1000 simultaneous requests - scalabilityAttachment of this function or not? - c ++How to save SWT StyledText widget content as HTML? - javaWhat are the advantages and disadvantages of code generation? - code-generationsolder exception after "java -jar start.jar" - jettyThe most efficient way to limit rows is returned from the union query - TSQL - sqlAll Articles