How to disable phone number linking in Mobile Safari?

前端 未结 24 1444
面向向阳花
面向向阳花 2020-11-22 16:56

Safari on iPhone automatically creates links for strings of digits that appear to the telephone numbers. I am writing a web page containing an IP address, and Safari is tur

24条回答
  •  名媛妹妹
    2020-11-22 17:42

    I was having the same problem. I found a property on the UIWebView that allows you to turn off the data detectors.

    self.webView.dataDetectorTypes = UIDataDetectorTypeNone;
    

提交回复
热议问题