先设置这三个属性~
_tableView.estimatedSectionHeaderHeight = 0;_tableView.estimatedSectionFooterHeight = 0;_tableView.estimatedRowHeight = 0;复制代码
刷新代码写成这样~
[UIView performWithoutAnimation:^{ [self.tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationNone];}];复制代码