reloadData刷新UITableView跳跃问题

在实践中遇到更新指定cell的大小,通过reloadData来刷新UITableView,但遇到了跳到顶部的问题,此时发现是影响这个得因素是下面三个属性的设置,我们必须要设置合理正确的值。

        _tableView.estimatedRowHeight = 0;

        _tableView.estimatedSectionHeaderHeight = 147;

        _tableView.estimatedSectionFooterHeight = 0;

你可能感兴趣的:(reloadData刷新UITableView跳跃问题)