iOS 11 相关 | iOS11 Tableview顶部空白

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

解决方法:

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

你可能感兴趣的:(iOS 11 相关 | iOS11 Tableview顶部空白)