美文网首页
UITableView reloadData或者reloadS

UITableView reloadData或者reloadS

作者: 种恶因得恶果 | 来源:发表于2019-05-30 14:41 被阅读0次

今天遇到一个问题,UITableView 在reloadData或者reloadSection后,滑动变卡顿了,但是过了几秒后再滑动就正常了,一下方法能解决这个问题:

_tableView.estimatedRowHeight = 0;

    _tableView.estimatedSectionHeaderHeight = 0;

    _tableView.estimatedSectionFooterHeight = 0;

给tableview加初始值。

相关文章

网友评论

      本文标题:UITableView reloadData或者reloadS

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