日常小知识点

iOS 11 相关 | iOS11 Tableview顶部空白

2018-08-08  本文已影响19人  JasonL

iOS11上废除了automaticallyAdjustsScrollViewInsets这个方法,所以造成iOS11机型顶端留白问题

解决方法:

    if (@available(iOS 11.0, *)) {
        self.tableview.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    }else {
        self.automaticallyAdjustsScrollViewInsets = NO;
    }
上一篇 下一篇

猜你喜欢

热点阅读