reloadData后tableView偏移量发生变化是因为预估高度引起,解决办法:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
reloadData后tableView偏移量发生变化是因为预估高度引起,解决办法:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;