tableview 删除row ,删除组

Posted JusDoit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tableview 删除row ,删除组相关的知识,希望对你有一定的参考价值。

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

删除行

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

    if (editingStyle==UITableViewCellEditingStyleDelete) {

        //        获取选中删除行索引值

        NSInteger row = [indexPath row];

        //        通过获取的索引值删除数组中的值

        [self.arrayimg removeObjectAtIndex:row];

        //        删除单元格的某一行时,在用动画效果实现删除过程

       [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

  

    }

}

 

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

{

    return UITableViewCellEditingStyleDelete;

}

 

 

[tableView deleteSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationAutomatic];

删除组

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

{

    if (editingStyle==UITableViewCellEditingStyleDelete) {

        //        获取选中删除行索引值

//        NSInteger row = [indexPath row];

        //        通过获取的索引值删除数组中的值

        NSInteger section = [indexPath section];

        [self.arrayimg removeObjectAtIndex:section];

        //        删除单元格的某一组时,在用动画效果实现删除过程

        //[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];

        [tableView deleteSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationAutomatic];

    }

}

 

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

{

    return UITableViewCellEditingStyleDelete;

}

以上是关于tableview 删除row ,删除组的主要内容,如果未能解决你的问题,请参考以下文章

添加的DataRow不会被删除做table.Rows[i].Delete()?

java中删除一条记录 table.getSelectedRow(), 0).toString());

tableview commit editingStyle 正在删除错误的条目

elementui笔记:el-table删除一行记录

elementui笔记:el-table删除一行记录

elementui笔记:el-table删除一行记录