UIWebView - How to Disable Action Sheets (UIActionSheet)?

前端 未结 5 1766
生来不讨喜
生来不讨喜 2021-02-02 04:01

I would like to know how you can disable UIActionSheets, specifically the Action Sheets being displayed after tapping and holding hyperlinks in a UIWebView. These seem to be ena

5条回答
  •  滥情空心
    2021-02-02 04:45

     - (void)webViewDidFinishLoad:(UIWebView *)webView
     {
        [webView stringByEvaluatingJavaScriptFromString:@"document.body.style.webkitTouchCallout='none'; document.body.style.KhtmlUserSelect='none'"];
     }
    

提交回复
热议问题