ScrollView下移 UIWebView 顶部出现空白条
程序员文章站
2022-03-07 20:04:32
...
方法1:viewDidLoad 中添加
self.automaticallyAdjustsScrollViewInsets=NO;//自动滚动调整,默认为YES
方法2:重写viewWillLayoutSubviews
-(void)viewWillLayoutSubviews {
[superviewWillLayoutSubviews];
_webView.scrollView.contentInset=UIEdgeInsetsZero;
}
上一篇: FreeMarker中直接使用的对象
下一篇: pytest框架进行接口自动化