码迷,mamicode.com
首页 > 其他好文 > 详细

tableview 删除row ,删除组

时间:2016-09-01 10:33:06      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

[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 ,删除组

标签:

原文地址:http://www.cnblogs.com/Jusive/p/5828524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!