博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView 自定义多选
阅读量:5948 次
发布时间:2019-06-19

本文共 3306 字,大约阅读时间需要 11 分钟。

前言

在上一篇文章中介绍了,有提到将

return UITableViewCellEditingStyleDelete | UITableViewCellEditingStyleInsert;

改为

return UITableViewCellEditingStyleDelete & UITableViewCellEditingStyleInsert;

可以实现自定义的多选操作,这次就来实现一下。

第一步:

自定义一个Cell类:UDTableViewCell,在nib中设置好重用标识,重新TableView注册这个nib Cell :

[self.tableView registerNib:[UINib nibWithNibName:NSStringFromClass([UDTableViewCell class]) bundle:[NSBundle mainBundle]] forCellReuseIdentifier:reuseIdentifier];

第二步:

在Cell中添加一个选择按钮,如果按钮直接添加到Cell的contentview或Cell上,无法实现想要的效果,请看下图:

iOS Simulator Screen Shot 2015年9月7日 上午10.30.53.png

如上图所示,当UITableView处于多选状态的时候,整个Cell的contentview向右移,露出后面的backgroundView,图中蓝色部分就是backgroundView,我们需要将选择按钮添加到backgroundView上,编辑的时候选择按钮自然就显示出来了。

第三步:

处理选中/取消选中逻辑

Cell.h:

typedef void(^CustomSelectBlock)(BOOL selected, NSInteger row);@interface UDTableViewCell : UITableViewCell @property (nonatomic, assign) NSInteger row; @property (nonatomic, strong) UIButton *btnSelect; @property (nonatomic, getter=isCustomSelected) BOOL customSelected; @property (nonatomic, copy) CustomSelectBlock customSelectedBlock;

Cell中添加按钮:

- (void)awakeFromNib {    UIView *backgroundView = [[UIView alloc] initWithFrame:self.contentView.bounds];    backgroundView.backgroundColor = [UIColor clearColor]; self.backgroundView = backgroundView; self.contentView.backgroundColor = [UIColor greenColor]; self.btnSelect = [UIButton buttonWithType:UIButtonTypeCustom]; self.btnSelect.frame = CGRectMake( 15, 2, selectButtonSize, selectButtonSize); self.btnSelect.backgroundColor = [UIColor clearColor]; [backgroundView addSubview:self.btnSelect]; [self.btnSelect setTitle:@"⭕️" forState:UIControlStateNormal]; self.btnSelect.titleLabel.font = [UIFont systemFontOfSize:20]; self.btnSelect.contentEdgeInsets = UIEdgeInsetsMake(5, 5, 5, 5); [self.btnSelect addTarget:self action:@selector(selectAction:) forControlEvents:UIControlEventTouchUpInside]; }
- (IBAction)selectAction:(id)sender{_customSelected = !_customSelected;if ([self.btnSelect.titleLabel.text isEqualToString:@"⭕️"]) {[self.btnSelect setTitle:@"?" forState:UIControlStateNormal]; }else{ [self.btnSelect setTitle:@"⭕️" forState:UIControlStateNormal]; } !_customSelectedBlock ?: _customSelectedBlock(_customSelected, _row); }

VC中datasouce方法接收回调并添加到选择的行数组中或从数组删除

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    UDTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier forIndexPath:indexPath];    cell.textLabel.text = [NSString stringWithFormat:@"%ld", indexPath.row]; cell.row = indexPath.row; __weak typeof(self) weakSelf = self; cell.customSelectedBlock = ^ (BOOL selected, NSInteger row) { if (selected) { [weakSelf.selectedRows addObject:@(row)]; }else { [weakSelf.selectedRows removeObject:@(row)]; } }; return cell; }

因为Cell的重用机制,所以当Cell滑进屏幕时会重用在重用队列中的Cell,导致Cell自定义选中状态不定。如果处理?:在Cell将要显示出来的时候判断一下做处理。

- (void)tableView:(UITableView *)tableView willDisplayCell:(UDTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{    if ([self.selectedRows containsObject:@(cell.row)]) { [cell.btnSelect setTitle:@"?" forState:UIControlStateNormal]; }else { [cell.btnSelect setTitle:@"⭕️" forState:UIControlStateNormal]; } }
最终效果图]
 
收藏学习:转自:http://www.jianshu.com/p/4863580bf627

转载于:https://www.cnblogs.com/xiaopin/p/6565260.html

你可能感兴趣的文章
度量时间差
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
JS敏感信息泄露:不容忽视的WEB漏洞
查看>>
分布式memcached服务器代理magent安装配置(CentOS6.6)
查看>>
Create Volume 操作(Part III) - 每天5分钟玩转 OpenStack(52)
查看>>
pxc群集搭建
查看>>
JS中加载cssText延时
查看>>
常用的脚本编程知识点
查看>>
计算机网络术语总结4
查看>>
新手小白 python之路 Day3 (string 常用方法)
查看>>
soapUI的简单使用(webservice接口功能测试)
查看>>
框架 Hibernate
查看>>
python-while循环
查看>>
手机端上传图片及java后台接收和ajaxForm提交
查看>>
【MSDN 目录】C#编程指南、C#教程、ASP.NET参考、ASP.NET 4、.NET Framework类库
查看>>