關於iOS uiwebview 禁止彈出複製和粘貼功能

來源:互聯網
上載者:User

因為項目需要,需要在使用UIWebView載入html時,禁用在input中的copy paste Menu選項

修改Html頁面

方法一:

function OnLoad()

{

   document.documentElement.style.webkitTouchCallout = "none"; //禁止快顯功能表

    document.documentElement.style.webkitUserSelect = "none";//禁止選中

}

然後在body加上onload

<body onload="OnLoad()"/>

實際測試,input並未禁止彈出複製、粘貼功能

html頁面內容,禁止了複製功能

方法二:

<style type="text/css">

    *{

        -webkit-user-select: none; /* Disable selection/Copy of UIWebView */

    }

 </style>

實際測試,禁止了彈出複製、粘貼功能,但鍵盤輸入也無法在顯示在webView的input中。



修改iOS代碼:

方法一:

- (void)webViewDidFinishLoad:(UIWebView *)webView {

    // Disable user selection

    [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitUserSelect='none';"];

    // Disable callout

    [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitTouchCallout='none';"];

}

實際測試,input並未完成禁止彈出複製、粘貼功能

html頁面內容,禁止了複製功能

方法二:

獲得UIMenuController,然後強行隱藏menu item的view,

實際測試,有效果,估計不能提交到app store

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.