目前我有一个UITableView,其中有大小的UITextView.单元格使用beginUpdates / endUpdates自动调整大小,但是当它执行换行刷新时,tableView会进行跳动。
解决办法:在执行更新之前关闭动画,然后在更新后启用,以防止UITableView发生口吃.
[UIView setAnimationsEnabled:NO];
[tableView beginUpdates];
[tableView endUpdates];
[UIView setAnimationsEnabled:YES];
网友评论