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;
本文标题:UITableView调用reloadData偏移量变化问题
本文链接:https://www.haomeiwen.com/subject/ntdlpftx.html
网友评论