• UIWebView相关设置


    让UIWebView的背景透明:

    1
    2
    self.webView.backgroundColor = [UIColor clearColor];
    self.webView.opaque = NO

    这样就可以背景透明了,如果还是无效的话,那么需要在html里面加入:

      <body style="background-color: transparent">

    去掉uiwebview滚动到边缘时的阴影效果:(不要重复对一个uiwebview调用这个方法,会导致滚动条消失)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    - (void) hideGradientBackground:(UIView*)theView
    {
      for (UIView * subview in theView.subviews)
      {
        if ([subview isKindOfClass:[UIImageView class]])
          subview.hidden = YES;
        [self hideGradientBackground:subview];
      }
    }
    - (void)viewDidLoad {
        [self hideGradientBackground:self.webView];
    }

     去除copy/paste的响应:

    1
    [webView stringByEvaluatingJavaScriptFromString:@"var css = document.createElement("style");css.type = "text/css";css.innerHTML = "* {-webkit-touch-callout: none;-webkit-user-select: none;}";document.body.appendChild(css);"];

     

  • 相关阅读:
    牛客网每日一练
    牛客网每日一练
    牛客网每日一练
    linux解压命令 迎客
    japid 研究 迎客
    Linux 下载工具 wget 迎客
    Nginx 安装 迎客
    Redmine 迎客
    安装 Redis 迎客
    http状态码一览表 迎客
  • 原文地址:https://www.cnblogs.com/weiboyuan/p/3852818.html
Copyright © 2020-2023  润新知