今天在项目中遇到了tableView的单选需求,现在总结一下,用一个简单的demo实现了简单的单选和多选两个功能.先看下效果图:

1:首先实现下单选
1:使用一个变量记录选中的行
@property (assign, nonatomic) NSIndexPath *selIndex; //单选选中的行
2:设置tableView数据,共2组,每组10行,
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
3:实现tableView的点击方法,每次点击记录点击的索引,取消之前的选择行,将当前选择的行打钩
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//取消之前的选择
UITableViewCell *celled = [tableView cellForRowAtIndexPath:_selIndex];
celled.accessoryType = UITableViewCellAccessoryNone;
//记录当前的选择的位置
_selIndex = indexPath;
//当前选择的打钩
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
4:列表滚动时,判断是否为选中的行,如果是cell是选中的那一行,就设置cell的accessoryType为UITableViewCellAccessoryCheckmark,到这里单选就实现完成了
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellid = @"cellid";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
}
cell.textLabel.text = [NSString stringWithFormat:@"第%zi组,第%zi行",indexPath.section+1,indexPath.row];
if (_selIndex == indexPath) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}else{
cell.accessoryType = UITableViewCellAccessoryNone;
}
return cell;
}
2:下面实现多选
1:使用一个数组记录选中的行
@property (strong, nonatomic) NSMutableArray *selectIndexs; //多选选中的行
2:使用一个变量判断是单选还是多选状态
@property (nonatomic, assign) BOOL isSingle; //单选还是多选
3:导航栏右侧按钮设置为单选和双选的切换按钮,并初始化多选记录数组
UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithTitle:@"多选" style:UIBarButtonItemStylePlain target:self action:@selector(singleSelect)]; self.navigationItem.rightBarButtonItem = rightItem; //初始化多选数组 _selectIndexs = [NSMutableArray new];
4:点击导航栏上的切换按钮切换单选还是多选状态
//单选还是多选按钮点击事件
-(void)singleSelect{
_isSingle = !_isSingle;
if (_isSingle) {
self.navigationItem.rightBarButtonItem.title = @"多选";
self.title = @"(单选)";
//切换为单选的时候,清除多选数组,重新加载列表
[self.selectIndexs removeAllObjects];
[self.tableView reloadData];
}else{
self.title = @"(多选)";
self.navigationItem.rightBarButtonItem.title = @"单选";
}
}
5:为tableView的点击方法中加上单选还是多选的状态判断,多选的话,将点击的行加入到多选索引数组中去,然后改变该行的cell.accessoryType,重复点击就做反操作
//选中某一行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
if (_isSingle) { //单选
//取消之前的选择
UITableViewCell *celled = [tableView cellForRowAtIndexPath:_selIndex];
celled.accessoryType = UITableViewCellAccessoryNone;
//记录当前的选择的位置
_selIndex = indexPath;
//当前选择的打钩
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}else{ //多选
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (cell.accessoryType == UITableViewCellAccessoryCheckmark) { //如果为选中状态
cell.accessoryType = UITableViewCellAccessoryNone; //切换为未选中
[_selectIndexs removeObject:indexPath]; //数据移除
}else { //未选中
cell.accessoryType = UITableViewCellAccessoryCheckmark; //切换为选中
[_selectIndexs addObject:indexPath]; //添加索引数据到数组
}
}
}
6:在cellForRow代理方法中同样加入单选多选的判断,在滚动列表是加载列表,判断是否选中
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellid = @"cellid";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellid];
}
cell.textLabel.text = [NSString stringWithFormat:@"第%zi组,第%zi行",indexPath.section+1,indexPath.row];
if (_isSingle) { //单选
if (_selIndex == indexPath) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}else{
cell.accessoryType = UITableViewCellAccessoryNone;
}
return cell;
}else{ //多选
cell.accessoryType = UIAccessibilityTraitNone;
for (NSIndexPath *index in _selectIndexs) {
if (indexPath == index) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
}
}
return cell;
}
到这里就完成了,没什么技术含量,有需求的可以参考下,有好的想法可以多多交流,项目在github的地址.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
# ios
# tableview
# 单选和多选
# 单选
# 多选
# 解决iOS11刷新tableview会出现漂移的现象
# IOS实现左右两个TableView联动效果
# iOS开发之TableView实现完整的分割线详解
# 详解iOS开发中UItableview控件的数据刷新功能的实现
# iOS中TableView如何统一数据源代理详解
# 判断是否
# 完成了
# 加载
# 中去
# 设置为
# 就做
# 先看
# 大家多多
# 移除
# 每组
# 实现了
# 栏上
# 没什么
# 双选
# numberOfSectionsInTableView
# UITableView
# return
# NSInteger
相关文章:
如何通过VPS建站实现广告与增值服务盈利?
制作门户网站的参考文献在哪,小说网站怎么建立?
金*站制作公司有哪些,金华教育集团官网?
如何规划企业建站流程的关键步骤?
如何选择适合PHP云建站的开源框架?
哈尔滨网站建设策划,哈尔滨电工证查询网站?
建站之星logo尺寸如何设置最合适?
杭州银行网站设计制作流程,杭州银行怎么开通认证方式?
家庭建站与云服务器建站,如何选择更优?
JS中使用new Date(str)创建时间对象不兼容firefox和ie的解决方法(两种)
清除minerd进程的简单方法
制作公司内部网站有哪些,内网如何建网站?
建站之星代理如何优化在线客服效率?
制作ppt免费网站有哪些,有哪些比较好的ppt模板下载网站?
美食网站链接制作教程视频,哪个教做美食的网站比较专业点?
如何快速上传建站程序避免常见错误?
广州网站制作公司哪家好一点,广州欧莱雅百库网络科技有限公司官网?
c++ stringstream用法详解_c++字符串与数字转换利器
如何高效生成建站之星成品网站源码?
建站之星代理平台如何选择最佳方案?
建站之星安装失败:服务器环境不兼容?
html制作网站的步骤有哪些,iapp如何添加网页?
javascript中的try catch异常捕获机制用法分析
如何零基础在云服务器搭建WordPress站点?
c# Task.Yield 的作用是什么 它和Task.Delay(1)有区别吗
如何确保FTP站点访问权限与数据传输安全?
建站主机功能解析:服务器选择与快速搭建指南
如何破解联通资金短缺导致的基站建设难题?
建站之星上传入口如何快速找到?
ui设计制作网站有哪些,手机UI设计网址吗?
韩国网站服务器搭建指南:VPS选购、域名解析与DNS配置推荐
阿里云网站制作公司,阿里云快速搭建网站好用吗?
MySQL查询结果复制到新表的方法(更新、插入)
官网自助建站系统:SEO优化+多语言支持,快速搭建专业网站
如何快速搭建响应式可视化网站?
建站之星展会模板:智能建站与自助搭建高效解决方案
如何通过西部数码建站助手快速创建专业网站?
网站制作服务平台,有什么网站可以发布本地服务信息?
b2c电商网站制作流程,b2c水平综合的电商平台?
网站制作话术技巧,网站推广做的好怎么话术?
制作证书网站有哪些,全国城建培训中心证书查询官网?
学校免费自助建站系统:智能生成+拖拽设计+多端适配
浅析上传头像示例及其注意事项
制作网站的公司有哪些,做一个公司网站要多少钱?
如何用已有域名快速搭建网站?
建站之星如何优化SEO以实现高效排名?
建站之星如何实现网站加密操作?
Dapper的Execute方法的返回值是什么意思 Dapper Execute返回值详解
武汉网站如何制作,黄黄高铁武穴北站途经哪些村庄?
七夕网站制作视频,七夕大促活动怎么报名?
*请认真填写需求信息,我们会在24小时内与您取得联系。