[tableView beginUpdates]和[tableView endUpdates]

今天看代码的时候发现同事使用了 [tableView beginUpdates];和[tableView endUpdates];。我没有用过不知道有什么用处

先看这篇文章大致了解一下https://www.jianshu.com/p/1a3caa9c7153


公司项目中使用的情况是:

当输入多行文本的时候,动画效果增加当前cell的高度

(通过断点查看发现使用beginUpdates endUpdates只会调用heightForRowAtIndexPath  不会走cellForRowAtIndexPath方法)

相比reloadData 和reloadRowsAtIndexPaths 效果要好

你可能感兴趣的:([tableView beginUpdates]和[tableView endUpdates])