美文网首页
UItableView 多余的空白

UItableView 多余的空白

作者: 小五92 | 来源:发表于2018-09-27 19:18 被阅读97次

问题 :使用的UItableView 在11.0系统以下,顶部出现了多余的空白。

原因 :超出安全区域;

解决办法 :

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

原理:(参考一位大神的)https://www.jianshu.com/p/efbc8619d56b

相关文章

网友评论

      本文标题:UItableView 多余的空白

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