美文网首页
用reloadRowsAtIndexPaths刷新单个cell

用reloadRowsAtIndexPaths刷新单个cell

作者: BlueBar | 来源:发表于2021-04-16 16:11 被阅读0次

    一个很常见的需求就是在一个cell上点赞,评论等操作时,需要刷新单个cell对象,常用的方法即为:

      [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:[NSIndexPath indexPathForRow:index inSection:0],nil] withRowAnimation:UITableViewRowAnimationNone];
    

    仅仅这行代码会引起cell上下跳动的问题,原因是 上述刷新过程中,虽然我们已经设置UITableViewRowAnimationNone,但任然会默认添加隐式动画效果。
    解决办法:去掉动画效果。

    方法1:(支持iOS7+)

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

    方法2:

    [UIView animateWithDuration:0 animations:^{
        [collectionView performBatchUpdates:^{
            [collectionView reloadItemsAtIndexPaths:@[[NSIndexPath indexPathForItem:index inSection:0]]];
        } completion:nil];
    }];
    

    方法3:(仅用于iOS11以后)

    [UIView setAnimationsEnabled:NO];
            [self.tableView performBatchUpdates:^{
                 [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:[NSIndexPath indexPathForRow:index inSection:0],nil] withRowAnimation:UITableViewRowAnimationNone];
            } completion:^(BOOL finished) {
                [UIView setAnimationsEnabled:YES];
            }];
    

    相关文章

      网友评论

          本文标题:用reloadRowsAtIndexPaths刷新单个cell

          本文链接:https://www.haomeiwen.com/subject/fymelltx.html