iOS11-UIScrollView设置contentInset

2021-04-25  本文已影响0人  守护地中海的花

闲来无事今天发现系统9.0.2系统上出现的bug

if (@available(iOS 11.0, *)) {
    view.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
    self.automaticallyAdjustsScrollViewInsets = NO;
}

这样设置任然无效有存在状态栏高度偏移量


image.png

怎么解决呢

必须在UIScrollView之前添加父视图之前添加视图

在UIScrollView添加之前先添加一个视图

UIView *view0 = [[UIView alloc]init];
[self.view insertSubview:view0 belowSubview:self.mainView];
上一篇 下一篇

猜你喜欢

热点阅读