I have UIWebView
that load html content using loadHTMLString
from core data. If i have html link (eg. <a href="http://www.google.com">google</a>
) in html content and click this link it does nothing. Absolutely nothing happen.
I tried to implement delegate method shouldStartLoadWithRequest
and when I print content of request.URL
it returns about:blank
.
I tried to to set in my UIWebView
webView.userInteractionEnabled = true
webView.dataDetectorTypes = UIDataDetectorTypes.All
Do anybody knows what could be wrong??