开启Self-Sizing之后,reloadData并不会一次性全部计算出ContentSize的高度.
如果要一次性全部计算出来,只需要把Self-Sizing关闭即可
把预估的3个方法全部设置为0
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;
开启Self-Sizing之后,reloadData并不会一次性全部计算出ContentSize的高度.
如果要一次性全部计算出来,只需要把Self-Sizing关闭即可
把预估的3个方法全部设置为0
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;