创建tableview的时候
if(@available(iOS11.0, *)) {
tableView.estimatedRowHeight =0;
tableView.estimatedSectionFooterHeight =0;
tableView.estimatedSectionHeaderHeight =0;
tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
网友评论