美文网首页
UITableView刷新指定cell

UITableView刷新指定cell

作者: 芮淼一线 | 来源:发表于2021-12-08 22:36 被阅读0次
    刷新指定cell
        //先刷新数据
        //然后再刷新cell
        [self.tableView beginUpdates];
        [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
        [self.tableView endUpdates];
    
    
    删除指定cell
        //先删除数据源
        //然后再删除cell
        [self.tableView beginUpdates];
        [self.tableView deleteRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
        [self.tableView endUpdates];
    
    
    省略
    //这两句代码可以省略--???
    [self.tableView beginUpdates];
    [self.tableView endUpdates];

    相关文章

      网友评论

          本文标题:UITableView刷新指定cell

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