iOS tableview开启高度估算(Self-Sizing),reloadData的时候不再全部计算高度。
解决方案:
在初始化tableview的时候加上这几行
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;
iOS tableview开启高度估算(Self-Sizing),reloadData的时候不再全部计算高度。
解决方案:
在初始化tableview的时候加上这几行
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;