无缝的UIWebview背景

时间:2012-11-06 23:48:35

标签: objective-c ios uiwebview

有没有办法摆脱UIWebView的边界?现在,即使我将背景设置为白色,我也会在页面外滚动时看到边框。

1 个答案:

答案 0 :(得分:0)

你无法删除灰色区域,你可以禁用滚动,这似乎是最好的方式。

我们目前在UIWebView上设置了透明背景

webview.opaque = NO;
webview.backgroundColor = [UIColor clearColor];

在HTML

<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0style="background-color:transparent">