ios – 在自动调整TextView中输入文本时,UITableView闪烁/停顿

目前我有一个UITableView,其中有大小的UITextView.单元格使用beginUpdates / endUpdates自动调整大小,但是当它执行换行刷新时,tableView会进行跳动。

解决办法:在执行更新之前关闭动画,然后在更新后启用,以防止UITableView发生口吃.

[UIView setAnimationsEnabled:NO];

[tableView beginUpdates];

[tableView endUpdates];

[UIView setAnimationsEnabled:YES];

你可能感兴趣的:(ios – 在自动调整TextView中输入文本时,UITableView闪烁/停顿)