码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView相关设置

时间:2014-07-18 14:26:56      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   java   color   strong   for   html   

让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);"];

 

UIWebView相关设置,布布扣,bubuko.com

UIWebView相关设置

标签:style   java   color   strong   for   html   

原文地址:http://www.cnblogs.com/weiboyuan/p/3852818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!