作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
在 UIWebView
中,将 UIDataDetectorTypes
添加到 View 相当容易:
myUIWebView.dataDetectorTypes = UIDataDetectorTypePhoneNumber;
等等。但是,WKWebView
似乎没有类似的属性。 This引用文献提到它已移至 myWebKitView.configuration
的 WKWebViewConfiguration
属性,但 official documentation并且 header 本身没有引用 dataDetectorTypes
。
我目前正在尝试将应用程序从使用 UIWebView
迁移到 WKWebView
,并且该应用程序当前具有用户可配置的 UIDataDetectorTypes
。那么,有什么方法可以使用提供的 API 来实现它,还是我必须编写自己的代码来解析 HTML?
最佳答案
实际上 WKwebView 没有 dataDetectorTypes 属性。但在 iOS 10 中 WKWebViewConfiguration 有。
试试下面的代码片段。
WKWebViewConfiguration *theConfiguration = [[WKWebViewConfiguration alloc] init];
theConfiguration.dataDetectorTypes = WKDataDetectorTypeNone;
WKWebView *webView = [[WKWebView alloc] initWithFrame:_someFrame configuration:theConfiguration];
这仅适用于 iOS10 及更高版本。
关于ios - WKWebKit : No dataDetectorTypes parameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25977764/
我是一名优秀的程序员,十分优秀!