iOS 解决UITableView刷新数据带来的界面跳动问题

很简单,在刷新cell的地方调用UIView的类方法即可:

[UIView performWithoutAnimation:^{
    [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:index inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}];

你可能感兴趣的:(iOS 解决UITableView刷新数据带来的界面跳动问题)