views:

931

answers:

1

Hello, this is a reformulation of this question

When i set myWebView.dataDetectorTypes = UIDataDetectorTypeNone; phone links (in a href html tag) are handled like this :

alt text

How can I handle phone links with the shouldStartLoadWithRequest delegate method instead?

A: 

I have not still found the cause of the problem but I found a solution.

Instead of writing phone links in anchors like this tel:myphonenumber, i write allo:myphonenumber.

Thus, the shouldStartLoadWithRequest method is called. And i can substitute allo: by tel: in my NSURLRequest object.

lefakir