为什么webview具有灰色背景且小于UIWebVIew

时间:2018-04-13 10:17:42

标签: xcode uiwebview

这是我的代码,亚马逊网页小于webview,并且具有灰色背景

self.webView = [[UIWebView alloc]initWithFrame:CGRectMake(0,0, self.view.frame.size.width, self.view.frame.size.height)];

enter image description here

1 个答案:

答案 0 :(得分:0)

因为UIWebView有额外的状态栏空间。你可以禁用状态栏,额外的空间将隐藏。

以防状态栏使用此代码隐藏空格:

[self.webView.scrollView setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];

灰色是UIWebView的默认背景色,你可以改变它:

self.webView.backgroundColor = [UIColor redColor];