//在AppDelegate中添加,可以通过以下方式禁用
if (@available(iOS 11.0, *)) {
UITableView.appearance.estimatedRowHeight = 0;
UITableView.appearance.estimatedSectionFooterHeight = 0;
UITableView.appearance.estimatedSectionHeaderHeight = 0;
}
[UIView performWithoutAnimation:^{
NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
[self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];