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);" ];
|
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。