tableView在reloadRowsAtIndexPaths时默认附加一个fade隐式动画
//解决刷新跳动问题
```
[UIView performWithoutAnimation:^{
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
}];
···
tableView在reloadRowsAtIndexPaths时默认附加一个fade隐式动画
//解决刷新跳动问题
```
[UIView performWithoutAnimation:^{
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
}];
···
本文标题:tableView刷新单个cell时跳动的问题解决
本文链接:https://www.haomeiwen.com/subject/dqondqtx.html
网友评论