iOS 11 导航栏 automaticallyAdjustsScrollViewInsets 无效

iOS 11 新特性,需要增加判断(TableView或者ScrollerView)

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

你可能感兴趣的:(iOS 11 导航栏 automaticallyAdjustsScrollViewInsets 无效)