很简单,在刷新cell的地方调用UIView的类方法即可:
[UIView performWithoutAnimation:^{
[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:index inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}];
很简单,在刷新cell的地方调用UIView的类方法即可:
[UIView performWithoutAnimation:^{
[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:index inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}];
本文标题:iOS 解决UITableView刷新数据带来的界面跳动问题
本文链接:https://www.haomeiwen.com/subject/nipxurtx.html
网友评论