美文网首页
react-native-webview IOS低版本中h5长按

react-native-webview IOS低版本中h5长按

作者: 简翦儋箪 | 来源:发表于2019-11-27 11:43 被阅读0次

在react-native-webview 源码中,ios->RNCWKWebView.m 里面:

- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{
   [self.webView evaluateJavaScript:@"document.documentElement.style.webkitTouchCallout='none';" completionHandler:nil];
    [self.webView evaluateJavaScript:@"document.documentElement.style.webkitUserSelect='none';"completionHandler:nil];
    .....
}

相关文章

网友评论

      本文标题:react-native-webview IOS低版本中h5长按

      本文链接:https://www.haomeiwen.com/subject/kmcpwctx.html