遇到问题:加载webview出现顶部空白条
解决方案:
1:viewDidLoad 中添加(网上很多人提供的解决方案 但未解决我的问题)
self.automaticallyAdjustsScrollViewInsets=NO;//自动滚动调整,默认为YES
2: 重写viewWillLayoutSubviews 方法添加(完美解决)
-(void)viewWillLayoutSubviews {
[superviewWillLayoutSubviews];
_webView.scrollView.contentInset=UIEdgeInsetsZero;
}
网友评论