码迷,mamicode.com
首页 > 编程语言 > 详细

二维数组左滑删除某一行

时间:2016-05-15 18:02:45      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

#pragma mark 编辑操作(删除或添加)
//实现了此方法向左滑动就会显示删除(或添加)图标
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    
    NTContactGroup * group = _contacts[indexPath.section];
    NTContact * contact = group.contacts[indexPath.row];
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [group.contacts removeObject:contact];
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];
        if (group.contacts.count == 0) {
            [_contacts removeObject:group];
            [tableView reloadData];
        }
    }else if (editingStyle == UITableViewCellEditingStyleInsert){
        
        NTContact * addContact = [[NTContact alloc]init];
        addContact.firstName = @"Guan";
        addContact.lastName = @"yu";
        addContact.mobileNumber = @"12345678901";
        [group.contacts insertObject:addContact atIndex:indexPath.row];
        [tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];
    }
}

实现二维数组的删除某一行

二维数组左滑删除某一行

标签:

原文地址:http://www.cnblogs.com/ritian/p/5495635.html

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