iOS11 刷新TableView上下跳动

AppDelegate 添加

if #available(iOS 11.0, *) {
            UITableView.appearance().estimatedRowHeight = 0;
            UITableView.appearance().estimatedSectionFooterHeight = 0;
            UITableView.appearance().estimatedSectionHeaderHeight = 0;
            UITableView.appearance().contentInsetAdjustmentBehavior = .never
        }
        
复制代码

转载于:https://juejin.im/post/5a31ebdff265da43200341ba

你可能感兴趣的:(iOS11 刷新TableView上下跳动)