iOS tableView实现单选和多选的实例代码

 更新时间:2017年07月18日 09:36:32   作者:网络菜鸟  
本篇文章主要介绍了iOS tableView实现单选和多选的实例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

今天在项目中遇到了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电子书翻页效果代码详解

    ios电子书翻页效果代码详解

    这篇文章主要介绍了ios电子书翻页效果代码实现过程以及对应的代码讲解,有需要的朋友参考下。
    2018-02-02
  • iOS10适配问题收集整理

    iOS10适配问题收集整理

    本文是小编给大家收集整理些有关iOS10适配问题的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2016-09-09
  • iOS简单到无门槛调试WebView的步骤详解

    iOS简单到无门槛调试WebView的步骤详解

    这篇文章主要给大家介绍了关于iOS调试WebView的相关资料,文中介绍的方法可以说是非常简单,简单到无门槛,通过图文介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
    2018-07-07
  • 详解IOS中如何实现瀑布流效果

    详解IOS中如何实现瀑布流效果

    说到瀑布流, 或许大家都不陌生, 瀑布流的实现也有很多种! 从scrollView 到 tableView 书写的瀑布流, 然后再到2012年iOS6 苹果API新加进的collectionView进行的瀑布流封装! 确实,不论是写起来还是用起来都要方便很多!那么下面一起来看看IOS中具体如何实现瀑布流效果。
    2016-08-08
  • iOS基于AVFoundation 制作用于剪辑视频项目

    iOS基于AVFoundation 制作用于剪辑视频项目

    这篇文章主要为大家介绍了利用AVFoundation 制作用于剪辑视频的项目,可以实现视频扩展或者回退的功能,感兴趣的小伙伴快来跟随小编一起学习吧
    2021-12-12
  • iOS开发之WKWebViewJavascriptBridge Xcode9中导致crash的解决

    iOS开发之WKWebViewJavascriptBridge Xcode9中导致crash的解决

    大家都知道WebViewJavascriptBridge它主要帮助我们优雅的实现OC与JS的交互,下面这篇文章主要给大家介绍了关于iOS开发之WKWebViewJavascriptBridge Xcode9中导致crash的解决方法,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-10-10
  • iOS CoreTelephony 实现监听通话状态

    iOS CoreTelephony 实现监听通话状态

    这篇文章主要介绍了iOS CoreTelephony 实现监听通话状态 的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2016-07-07
  • iOS逆向工程之Hopper中的ARM指令详解

    iOS逆向工程之Hopper中的ARM指令详解

    这篇文章主要介绍了iOS逆向工程之Hopper中的ARM指令的相关资料,本文介绍的非常详细,具有参考借鉴价值,需要的朋友可以参考下
    2016-09-09
  • iOS开发TableView网络请求及展示预加载实现示例

    iOS开发TableView网络请求及展示预加载实现示例

    这篇文章主要为大家介绍了iOS开发TableView网络请求及展示预加载实现示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-07-07
  • iOS app 右滑返回操作的两种方法

    iOS app 右滑返回操作的两种方法

    这篇文章主要介绍了iOS app 右滑返回操作的相关资料,需要的朋友可以参考下
    2017-08-08

最新评论