ios – 在自动调整TextView中输入文本时,UITabl
2019-07-04 本文已影响0人
暗光的技术小站
目前我有一个UITableView,其中有大小的UITextView.单元格使用beginUpdates / endUpdates自动调整大小,但是当它执行换行刷新时,tableView会进行跳动。
解决办法:在执行更新之前关闭动画,然后在更新后启用,以防止UITableView发生口吃.
[UIView setAnimationsEnabled:NO];
[tableView beginUpdates];
[tableView endUpdates];
[UIView setAnimationsEnabled:YES];