UITableViewCell单多行操作(多行删除)

首先我们来了解iOS的单行删除:
在 tableView 中有时候我们会对其进行增删操作,主要是使用系统的,而不是自定义的.

对于系统的可编辑状态我们可以看到有三种:
UITableViewCellEditingStyleNone, 
UITableViewCellEditingStyleDelete, 
UITableViewCellEditingStyleInsert

接着我们再来了解iOS的多行操作;比如下面的图所示:


如果UI不是大变动这时候没必要自定义了.其实这个系统也是给写好的.而且对于 cell 的循环利用问题已经做过处理了.

下面看一下重点,实现这个多选有两种方法:
1>使用 tableView 的属性:

@property (nonatomic) BOOL allowsMultipleSelectionDuringEditing

allowsMultipleSelectionDuringEditing这个属性默认是 NO, 设置成 YES. 就是出现多选.

2>使用 tableView 的代理方法.我们知道上面代理只有三个选项,没有多选的枚举值.

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
// 当我们 使用两个枚举值的按位或时,就会发现多选出现了. 
return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;
}

当然如果需要这种效果,不要忘记设置为可编辑[self setEditing:YES animated:YES];
注意:如果需要自定义多选效果的话,一定要在数据模型中定义是否选中状态,否则 cell 循环利用,会使得选中的行有问题. 删数据时要注意的是删除相应数据后, 重新刷新一下表格.删除的数据,和删除的表格一定要对应起来.

1> 左滑出现删除按钮

// 1.确保cell 可以被编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { 
    return YES;
}

// 2.左滑后点击 delete 之后,会调用下面的方法,
// PS:这个方法必须写, 否则UITableViewRowAction 在ios9中正常 在ios8中无法滑动  
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { 
    NSLog(@"%@", indexPath);
}

// 注意:这个方法可以不去写,如果写了必须 return 的是UITableViewCellEditingStyleDelete,否则不会出现侧滑效果
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { 
    return UITableViewCellEditingStyleDelete;
}

// 3.如果希望修改标题的话.
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {// 测试用 
     return @"haha";
}

由于现在越来越多的新需求产生,很多时候我们侧滑会出多个选项.从 iOS 以后,苹果也有了相应的方法:

- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
    // 使用 Block 回调,实现点击后的方法 
    UITableViewRowAction *action = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"增加" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) { 
        NSLog(@"%@", indexPath); 
      }]; 
     UITableViewRowAction *action1 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"减少" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) { 
          NSLog(@"%@", indexPath); 
    }];
// 苹果的习惯,右侧的多个按钮,显示位置是反着的 
return @[action, action1];
}

现在下面是自定义实现 多行删除 的部分代码:


// 消息列表数组
@property (nonatomic, strong) NSMutableArray *messageList;

// 编辑按钮
@property (nonatomic, weak) UIButton *editBtn;

// 多选数组
@property (nonatomic, strong) NSMutableArray *selectedEditList;

// 消息主键
@property (nonatomic, copy) NSString *pushId;

#pragma mark - 懒加载

- (NSMutableArray *)messageList {
    if (!_messageList) {
        _messageList = [NSMutableArray array];
        
    }
    return _messageList;
}

- (NSMutableArray *)selectedEditList {
    if (!_selectedEditList) {
        _selectedEditList = [NSMutableArray array];
    }
    return _selectedEditList;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = QTXBackgroundColor;
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    // 隐藏无数据的cell
    self.tableView.tableFooterView = [[UIView alloc] init];
    self.navigationItem.title = @"系统消息";
    
    // 编辑按钮
    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
    [btn addTarget:self action:@selector(editClick:) forControlEvents:UIControlEventTouchUpInside];
    [btn setTitle:@"编辑" forState:UIControlStateNormal];
    [btn setTitle:@"取消" forState:UIControlStateSelected];
    [btn setTitleColor:QTXNavTitleColor forState:UIControlStateNormal];
    btn.titleLabel.font = [UIFont systemFontOfSize:14];
    // 让按钮内部的所以内容右对齐
    btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentRight;
    btn.size = CGSizeMake(44, 44);
    self.editBtn = btn;
    UIBarButtonItem *editItem = [[UIBarButtonItem alloc] initWithCustomView:btn];
    self.navigationItem.rightBarButtonItem = editItem;

}
- (void)editClick:(UIButton *)btn {
    
    btn.selected = !btn.selected;
    
    if (btn.selected) {
        self.deleteView.hidden = NO;

        for (QTXSystemMessageModel *model in self.messageList) {
            model.edit = YES;
            model.checked = NO; // 选中编辑状态时 默认都是未选中
        }
    } else {
        self.deleteView.hidden = YES;
        [self.selectedEditList removeAllObjects];
        for (QTXSystemMessageModel *model in self.messageList) {
            model.edit = NO;
        }
    }
    [self.tableView reloadData];
}
#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.messageList.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    QTXSystemMessageListCell *cell =[QTXSystemMessageListCell cellWithTableView:tableView];
    if (self.messageList.count) {
        QTXSystemMessageModel *model = self.messageList[indexPath.row];
        cell.model = model;
    }
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
    
    QTXSystemMessageModel *model = self.messageList[indexPath.row];
    return model.cellH; // 自适应消息内容高度
}
#pragma mark - UITableViewDelegate

// 选中当前行已读
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    
    QTXSystemMessageModel *model = self.messageList[indexPath.row];
    
    // 编辑状态 点击事件
    if (self.editBtn.selected) {
        model.checked = !model.isChecked;
        [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
        if (model.isChecked) {
            [self.selectedEditList addObject:model];
        } else {
            [self.selectedEditList removeObject:model];
        }
        
    } else {
        
        //  取出模型判断是否已读,1)已读直接return,
        if ([model.pushStatus isEqualToString:@"1"]) return;
       #warning todo : 
       // 2) 未读点击选中发送请求修改状态已读
    }
}

//先要设置Cell可编辑
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}

//定义编辑样式
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellEditingStyleDelete;
}

//进入编辑模式,按下出现的编辑按钮后  编辑状态删除
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    
    QTXSystemMessageModel *model = self.messageList[indexPath.row];
    [self uploadDeleteData:model.pushId reloadData:indexPath];
}

- (void)uploadDeleteData:(NSString *)pushId reloadData:(NSIndexPath *)indexPath {
     #warning todo : 
    // 1.发送删除请求
    // 2.删除成功后记得 移除当前模型的数据 和相对应的数据源cell
    /*
              if (indexPath) {
            [weakSelf.messageList removeObjectAtIndex:indexPath.row]; // 移除当前模型的数据
            [weakSelf.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationRight]; // 移除当前相应的数据源cell
        }
        
        [weakSelf.tableView reloadData];
        
    */
}
// 在请求消息数据方法里需要加载调用这个方法
/*
// 当前系统消息列表
        NSArray *currentPageArray = [QTXSystemMessageModel loadSystemMessageFromJson:json[@"data"]];
        [self currentEditStatus:currentPageArray];
        
        // 所有系统消息列表
        [weakSelf.messageList addObjectsFromArray:currentPageArray];
*/
- (void)currentEditStatus: (NSArray *)currentPageArray {
    if (self.editBtn.selected) {
        for (QTXSystemMessageModel *model in currentPageArray) {
            model.edit = YES;
        }
    } else {
        for (QTXSystemMessageModel *model in currentPageArray) {
            model.edit = NO;
        }
    }
}

// 点击删除事件
- (void)deleteBtnClick {
    for (QTXSystemMessageModel *model in self.selectedEditList) {
        [self uploadDeleteData:model.pushId reloadData:nil];
    }
    [self.messageList removeObjectsInArray:self.selectedEditList];
    [self.tableView reloadData];
    [self editClick:self.editBtn];
}

效果如下:


1.png
2.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,066评论 4 62
  • Swift版本点击这里欢迎加入QQ群交流: 594119878最新更新日期:18-09-17 About A cu...
    ylgwhyh阅读 25,337评论 7 249
  • 设备屏幕尺寸分辨率(PT)Reader分辨率(PX)渲染后PPIiPhone 3GS3.5寸320x480@1x3...
    Thinkdifferents阅读 429评论 0 49
  • 励志语说:处在不舒服状态的人是在磨练自己的最好时机,也是求变的上升期。可是每天的不舒服会不会毁掉我。是我真的懒吗?...
    蒙妈成长记阅读 154评论 0 0
  • 时态无疑是初中英语最重要的语法内容,学好时态基本就拿下了语法的半壁江山。今天总结的八种时态是大家在初中阶段必学必考...
    小绿植物阅读 1,028评论 0 4