ScrollView下移 UIWebView 顶部出现空白条

2017-08-15  本文已影响82人  6a948902fef0

方法1:viewDidLoad 中添加

self.automaticallyAdjustsScrollViewInsets=NO;//自动滚动调整,默认为YES

方法2:重写viewWillLayoutSubviews


-(void)viewWillLayoutSubviews {
       [superviewWillLayoutSubviews];
        _webView.scrollView.contentInset=UIEdgeInsetsZero;
}
上一篇下一篇

猜你喜欢

热点阅读