溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

iOS中tableView如何實(shí)現(xiàn)單選和多選

發(fā)布時(shí)間:2021-07-09 09:35:25 來(lái)源:億速云 閱讀:139 作者:小新 欄目:移動(dòng)開(kāi)發(fā)

這篇文章主要介紹iOS中tableView如何實(shí)現(xiàn)單選和多選,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

先看下效果圖:

iOS中tableView如何實(shí)現(xiàn)單選和多選

1:首先實(shí)現(xiàn)下單選

1:使用一個(gè)變量記錄選中的行

@property (assign, nonatomic) NSIndexPath    *selIndex;   //單選選中的行

2:設(shè)置tableView數(shù)據(jù),共2組,每組10行,

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
  return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  return 10;
}

3:實(shí)現(xiàn)tableView的點(diǎn)擊方法,每次點(diǎn)擊記錄點(diǎn)擊的索引,取消之前的選擇行,將當(dāng)前選擇的行打鉤

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    //取消之前的選擇
    UITableViewCell *celled = [tableView cellForRowAtIndexPath:_selIndex];
    celled.accessoryType = UITableViewCellAccessoryNone;

    //記錄當(dāng)前的選擇的位置
    _selIndex = indexPath;

    //當(dāng)前選擇的打鉤
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
}

4:列表滾動(dòng)時(shí),判斷是否為選中的行,如果是cell是選中的那一行,就設(shè)置cell的accessoryType為UITableViewCellAccessoryCheckmark,到這里單選就實(shí)現(xiàn)完成了

- (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:下面實(shí)現(xiàn)多選

1:使用一個(gè)數(shù)組記錄選中的行

@property (strong, nonatomic) NSMutableArray  *selectIndexs; //多選選中的行

2:使用一個(gè)變量判斷是單選還是多選狀態(tài)

@property (nonatomic, assign) BOOL       isSingle;    //單選還是多選

3:導(dǎo)航欄右側(cè)按鈕設(shè)置為單選和雙選的切換按鈕,并初始化多選記錄數(shù)組

UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithTitle:@"多選" style:UIBarButtonItemStylePlain target:self action:@selector(singleSelect)];
  self.navigationItem.rightBarButtonItem = rightItem;

  //初始化多選數(shù)組
  _selectIndexs = [NSMutableArray new];

4:點(diǎn)擊導(dǎo)航欄上的切換按鈕切換單選還是多選狀態(tài)

//單選還是多選按鈕點(diǎn)擊事件
-(void)singleSelect{
  _isSingle = !_isSingle;
  if (_isSingle) {
    self.navigationItem.rightBarButtonItem.title = @"多選";
    self.title = @"(單選)";
    //切換為單選的時(shí)候,清除多選數(shù)組,重新加載列表
    [self.selectIndexs removeAllObjects];
    [self.tableView reloadData];
  }else{
    self.title = @"(多選)";
    self.navigationItem.rightBarButtonItem.title = @"單選";
  }
}

5:為tableView的點(diǎn)擊方法中加上單選還是多選的狀態(tài)判斷,多選的話,將點(diǎn)擊的行加入到多選索引數(shù)組中去,然后改變?cè)撔械腸ell.accessoryType,重復(fù)點(diǎn)擊就做反操作

//選中某一行
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

  if (_isSingle) {    //單選
    //取消之前的選擇
    UITableViewCell *celled = [tableView cellForRowAtIndexPath:_selIndex];
    celled.accessoryType = UITableViewCellAccessoryNone;

    //記錄當(dāng)前的選擇的位置
    _selIndex = indexPath;

    //當(dāng)前選擇的打鉤
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.accessoryType = UITableViewCellAccessoryCheckmark;

  }else{           //多選
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    if (cell.accessoryType == UITableViewCellAccessoryCheckmark) { //如果為選中狀態(tài)
      cell.accessoryType = UITableViewCellAccessoryNone; //切換為未選中
      [_selectIndexs removeObject:indexPath]; //數(shù)據(jù)移除
    }else { //未選中
      cell.accessoryType = UITableViewCellAccessoryCheckmark; //切換為選中
      [_selectIndexs addObject:indexPath]; //添加索引數(shù)據(jù)到數(shù)組
    }
  }
}

6:在cellForRow代理方法中同樣加入單選多選的判斷,在滾動(dòng)列表是加載列表,判斷是否選中

- (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;
}

以上是“iOS中tableView如何實(shí)現(xiàn)單選和多選”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI