iOS11-UIScrollView设置contentInsetAdjustmentBehavior无效

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

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

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


iOS11-UIScrollView设置contentInsetAdjustmentBehavior无效_第1张图片
image.png

怎么解决呢

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

  • 如果在UIScrollView添加视图但是移除或者bringSubviewToFront都不行
  • UIScrollView不能作为父视图第一个子视图 层级必须不能是最底部

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

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

你可能感兴趣的:(iOS11-UIScrollView设置contentInsetAdjustmentBehavior无效)