美文网首页
tableView删除指定行

tableView删除指定行

作者: 姚姚先生 | 来源:发表于2018-05-14 09:37 被阅读240次
    #pragma mark - UITableVIew 动画
    - (void)deleteAnimationAtIndexPath:(NSIndexPath *)indexPath
    {
        NSMutableArray *tempProductList = [[NSMutableArray alloc] initWithArray:self.productList];
        [tempProductList removeObjectAtIndex:indexPath.row];
        self.productList = [tempProductList copy];
    
        [self.productTableView beginUpdates];
        [self.productTableView deleteRowsAtIndexPaths:@[indexPath]  withRowAnimation:UITableViewRowAnimationBottom];
                                    
        [self.productTableView endUpdates];
    }
    

    相关文章

      网友评论

          本文标题:tableView删除指定行

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