美文网首页
UIWebView 禁止长按复制粘贴

UIWebView 禁止长按复制粘贴

作者: 狗娃_ | 来源:发表于2017-03-02 10:46 被阅读0次

直接上代码:

- (void)webViewDidFinishLoad:(UIWebView *)webView {
    // Disable user selection
    [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitUserSelect='none';"];
    // Disable callout
    [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitTouchCallout='none';"];
}

相关文章

网友评论

      本文标题:UIWebView 禁止长按复制粘贴

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