In my iPhone application, i use web view to display formatted text like this :
Tél :
0442059840
The number 0442059840 is a link : <a href="">0442059840</a>.
In my case, i want to make a telephone call when i click on that link, is that possible? Thanx in advance.
Just make the
hrefparameter point to the phone number:You can also let the web view parse for links by setting the data detector types. In that case you just need the phone number, and not the
<a></a>tag.