tableView刷新单个cell时跳动的问题解决

tableView在reloadRowsAtIndexPaths时默认附加一个fade隐式动画

   //解决刷新跳动问题

```

            [UIView performWithoutAnimation:^{

               [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

            }];

···

你可能感兴趣的:(tableView刷新单个cell时跳动的问题解决)