美文网首页
iOS11-UIScrollView设置contentInset

iOS11-UIScrollView设置contentInset

作者: 守护地中海的花 | 来源:发表于2021-04-25 00:45 被阅读0次

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

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

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


image.png

怎么解决呢

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

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

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

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

相关文章

网友评论

      本文标题:iOS11-UIScrollView设置contentInset

      本文链接:https://www.haomeiwen.com/subject/ouprrltx.html