3

几乎,我已经尝试了所有方法来禁用复制/粘贴,UIWebView但没有任何东西对我有用。

UIWebView从一个字符串(字符串数组)加载我的,如下所示:

[webView loadHTMLString:
[NSString stringWithFormat:@"%@<p class=\"paragraph\"  style=\"float: right\"  >%@</p>",css,[[array objectAtIndex:0] valueForKey:@"content"]]   baseURL:nil ];

我试过这个:

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

和这个:

  NSString *css =
@"<head><style><body> *{-webkit-touch-callout: none; -webkit-user-select: none;}</style> </head>  </body> ";

但没有什么对我有用,尤其是对于 iOS 4.2

4

3 回答 3

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

还将禁用 Mobile Safari 上的表单。

于 2012-10-16T00:41:52.647 回答
7

看起来更复杂的是......看看这个关于SO的线程,它详细说明了你必须做的一切......

摘要:您需要:

修改你的 CSS(就像你一样):

<style type="text/css">
* {
  -webkit-touch-callout: none;
  -webkit-user-select: none; /* Disable selection/Copy of UIWebView */
}
</style>

添加一些javascript:

NSString * jsCallBack = @"window.getSelection().removeAllRanges();";    
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];

禁用复制/粘贴菜单:

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender 
{
  BOOL superCanPerform = [super canPerformAction:action withSender:sender];
  if (superCanPerform) {
    if (action == @selector(copy:) ||
      action == @selector(paste:)||
      action == @selector(cut:)) 
    {
       return _copyCutAndPasteEnabled;
    }
  }
  return superCanPerform;
}

canPerformAction应该在你的 UIWebView 中定义;你有两个选择:

  1. 为 UIWebView 定义一个类别(如果可以从所有 UIWebView 中删除此行为);

  2. 从那里派生您自己的 Web 视图类UIWebView并覆盖该方法。

于 2012-07-02T09:14:29.207 回答
0

用这个。

<style type="text/css">
*:not(input):not(textarea) {
-webkit-user-select: none; /* disable selection/Copy of UIWebView */
-webkit-touch-callout: none; /* disable the IOS popup when long-press on a link */
}       
</style>
 If you want Disable only anchor button tag use this.

a {-webkit-user-select: none; /* disable selection/Copy of UIWebView */
   -webkit-touch-callout: none; /* disable the IOS popup when long-press on a link */
 }
于 2014-08-21T09:54:29.697 回答