I have a number of web views in my app in which I need to be careful about allowing further HTML links.
I disallow links in the delegate method shouldStartLoadWithRequ
This will do it:
self.webView.dataDetectorTypes = UIDataDetectorTypeNone;