iOS开发经验总结

ios开发:tableView的编辑删除cell的方法

2017-07-30  本文已影响7人  SadMine
#pragma mark - 编辑按钮的方法
    //如何更改UITableView的编辑状态
//    _tableView.editing  默认NO
    //设置UITableView的编辑状态
    [_tableView setEditing:!_tableView.editing animated:YES]; 
    //只有UITableView处于可编辑状态时,才能进行删除、移动等操作
    //NO->YES->NO
#pragma mark - 刷新按钮的方法
- (void)refreshButtonClick:(UIBarButtonItem *)button
    //刷新数据
    //reloadData  会把UITableView所有的代理方法都会重新执行一次
    [_tableView reloadData]; 
//更改删除文字
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
    return @"删除";
}
//设置UITableView的编辑类型
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.section == 0) {
        //返回删除类型
        return UITableViewCellEditingStyleDelete;
    }
    //返回新增元素类型
    return UITableViewCellEditingStyleInsert;
}
//单选删除及插入元素对应的方法
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    //有关删除元素的方法实现
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        //<1>更改数据源
        [[_dataArray objectAtIndex:indexPath.section] removeObjectAtIndex:indexPath.row];
        //<2>删除对应多余的cell
        [_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    //有关新增元素的方法实现
    if (editingStyle == UITableViewCellEditingStyleInsert) {
        //<1>更改数据源
        PersonModel *model = [[PersonModel alloc] init];
        model.name = @"我是新来的";
        [[_dataArray objectAtIndex:indexPath.section] insertObject:model atIndex:indexPath.row];
        //<2>新增一行的cell
        [_tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
}
#pragma mark - 有关移动元素的方法
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
    //sourceIndexPath        原始数据
    //destinationIndexPath   结果的数据 
    //<1>保存将要移动的那行cell上面的数据
    PersonModel *model = [[_dataArray objectAtIndex:sourceIndexPath.section] objectAtIndex:sourceIndexPath.row];
    //<2>从原始位置上删除
    [[_dataArray objectAtIndex:sourceIndexPath.section] removeObject:model];
    //<3>放到新的位置上
    [[_dataArray objectAtIndex:destinationIndexPath.section] insertObject:model atIndex:destinationIndexPath.row];
    [_tableView reloadData];
}

#pragma mark - 系统的编辑按钮的方法
- (void)setEditing:(BOOL)editing animated:(BOOL)animated{
    [super setEditing:editing animated:animated];
//    editing  NO->YES->NO
    //设置UITableView的编辑状态
   [_tableView setEditing:editing animated:YES];//==[_tableView setEditing:!_tableView.editing animated:YES]
    [_tableView setEditing:editing animated:YES];
    //清空之前选择的元素
    [_rubbishArray removeAllObjects];************
    if (editing) {
        [self.navigationItem setRightBarButtonItem:_rubbishButton animated:YES];
    }else{
        [self.navigationItem setRightBarButtonItem:nil animated:YES];
    }
}
#pragma mark - 一键删除的按钮的方法
- (void)rubbishButtonClick:(UIBarButtonItem *)button{
    //清除选中的待删除的数据
    [_dataArray removeObjectsInArray:_rubbishArray];
    //tableView刷新数据
    [_tableView reloadData];
#pragma mark - 多选删除的相关方法
//设置编辑类型
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
    //如果删除和插入同时返回,就会出现多选删除
    return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;
}
//多选删除对应的方法实现
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    //当tableView处于编辑状态时
    if (tableView.editing) {
        //将选中的那行cell上面的数据放到将要删除的数组里面
        [_rubbishArray addObject:[_dataArray objectAtIndex:indexPath.row]];
    }else{
        //当tableView处于不可编辑状态时,爱干嘛干嘛
        NSLog(@"hhhh");
    }
}
//cell的反选
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
    if (tableView.editing) {
        [_rubbishArray removeObject:[_dataArray objectAtIndex:indexPath.row]];
    }
}

系统Cell上直接叠加控件

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:iden];
        }
    //需要添加else判断,把cell上面的控件清除否则会出现覆盖的情况
    else{
        //cell.contentView.subviews  将cell上面所有的控件放到数组里面
        while ([cell.contentView.subviews lastObject] != nil) {
            //将最后一个元素移除除去;删除Cell上的控件而不是cell清空
            [(UIView *)[cell.contentView.subviews lastObject] removeFromSuperview];
        }
    }
    //将控件添加到cell上面
    [cell.contentView addSubview:titleLable];

注册cell不能接收代理传过来的值

    //注册cell类:xib类型
    [_tableView registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:nil] forCellReuseIdentifier:@"iden"];
    //UITableViewCell的写法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"iden" forIndexPath:indexPath];
    BookModel *model = _dataArray[indexPath.row];
    cell.titleLabel.text = model.title;
    return cell;
}
tableView的cell滑动,显示置顶,删除,或者收藏
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewRowAction *toTop = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"置顶" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"置顶");
        [tableView setEditing:NO animated:YES];
    }];
    toTop.backgroundColor =[UIColor redColor];
    
    UITableViewRowAction *delege = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        NSLog(@"删除");
        [tableView setEditing:NO animated:YES];
    }];
    delege.backgroundColor =[UIColor greenColor];
    NSArray *arrar = [NSArray arrayWithObjects:toTop,delege, nil];
    return arrar;
}
tableView的编辑状态下全选,修改每个cell左侧的选择按钮的背景图片 http://www.cocoachina.com/bbs/read.php?tid=248799
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell * cell = [self.tableView cellForRowAtIndexPath:indexPath];
    NSLog(@"%@",cell.subviews); //先看看它的子视图,发现只有一个子视图,叫"<uitableviewcellscrollview: 0x8c8e830;="""" frame=""(0"" 0;="""" 320="""" 100);然后你就取到这个uiview,再看它的子视图。="" <br="">
    UIView * view1 = cell.subviews[0];
    NSLog(@"%@",view1.subviews);/*然后这里你看到它有3个子视图,分别是 
   "<uitableviewcellselectedbackground: 0x89aca50;="""" frame=""(0"" -0.5;="""" 320="""" 101);="""" layer=""<CALayer:"" 0x89acb20="""">>",
   "<uitableviewcellcontentview: 0x899c350;="""" frame=""(38"" 0;="""" 282="""" 100);="""" opaque=""NO;"" gesturerecognizers=""<NSArray:"" 0x899c660="""">; layer = <calayer: 0x899c3c0="""">>",
   "<uitableviewcelleditcontrol: 0x8979da0;="""" frame=""(0"" 0;="""" 47="""" 100);="""" opaque=""NO;"" userinteractionenabled=""NO;"" layer=""<CALayer:"" 0x8993960="""">>"
   你一个是你点击了cell之后cell背景变成淡蓝色的背景view,第二个是cell里面常用的contentView,cell的textLabel就是放在这里面的,第三个就是我们要找的,其实这些都是摸索的,我是把第三个view取到,然后把它颜色设成红色,你就会看到那个蓝色的图标就在这个红色区域里,所以可以确定蓝色图标是这个view的子视图,所以从这里继续想下取*/
    UIView * CellEditControl = view1.subviews[2];//按输出顺序来,就是这样向下查找,知道找到你想要的那个view
    UIImageView * imgView = [[[[cell.subviews[0] subviews] objectAtIndex:2] subviews] objectAtIndex:0];
    UIImageView * testImgView = [[UIImageView alloc]initWithImage:imgView.image];
    testImgView.frame = CGRectMake(60, 0, 30, 25);
    [cell.contentView addSubview:testImgView];

上一篇下一篇

猜你喜欢

热点阅读