美文网首页
UITableView调用reloadData偏移量变化问题

UITableView调用reloadData偏移量变化问题

作者: KnowWhy | 来源:发表于2018-07-12 09:27 被阅读0次

    reloadData后tableView偏移量发生变化是因为预估高度引起,解决办法:

    self.tableView.estimatedRowHeight = 0;
    self.tableView.estimatedSectionFooterHeight = 0;
    self.tableView.estimatedSectionHeaderHeight = 0;
    

    相关文章

      网友评论

          本文标题:UITableView调用reloadData偏移量变化问题

          本文链接:https://www.haomeiwen.com/subject/ntdlpftx.html