tableView的多选和单选

2017-06-05  本文已影响656人  七里田间的守望者

系统自带的多选

Snip20170605_1.png
 // 允许在编辑模式进行多选操作
 self.tableView.allowsMultipleSelectionDuringEditing = YES;
[self.tableView setEditing:YES animated:YES];
[self.tableView setEditing:!self.tableView.isEditing animated:YES];
- (void)remove
{
    // 获得所有被选中的行
    NSArray *indexPaths = [self.tableView indexPathsForSelectedRows];

    
    // 便利所有的行号
    NSMutableArray *deletedDeals = [NSMutableArray array];
    for (NSIndexPath *path in indexPaths) {
        [deletedDeals addObject:self.deals[path.row]];
    }
    
    // 删除模型数据
    [self.deals removeObjectsInArray:deletedDeals];
    
   // 刷新表格  一定要刷新数据
    [self.tableView reloadData];
}
# 说明:self.deals 是存放模型的数组

自定义cell多选

Snip20170605_2.png
/** 状态量标识有无被打钩 */
@property (assign, nonatomic, getter=isChecked) BOOL checked;
// 设置打钩控件的显示和隐藏
self.checkView.hidden = !deal.isChecked;
// 取消选中这一行
[tableView deselectRowAtIndexPath:indexPath animated:YES];

// 模型的打钩属性取反
Deal *deal = self.deals[indexPath.row];
deal.checked = !deal.isChecked;

// 刷新表格
[tableView reloadData];

# 说明:Deal 是模型数据    self.deals是存放模型数据的数组

自定义cell多选(不是MVC开发模式)

@property (nonatomic, strong) NSMutableArray *indexPaths;

# 并且进行懒加载
- (NSMutableArray *)indexPaths
{
    if (!_indexPaths) {
        _indexPaths = [NSMutableArray array];
    }
    return _indexPaths;
}

//mr_tb 未选中图片  xz_tb选中图片
#默认是没有任何选中的cell的
cell.imageView.image = [UIImage imageNamed:@"mr_tb"];
//多选
for (NSIndexPath * index in self.indexPaths) 
{//遍历数组里面的索引 和 当前索引是否一致
     if (index == indexPath)
     {//改变在选择的数组里面的记录
          cell.imageView.image = [UIImage imageNamed:@"xz_tb"];//选中
          break;
     }
}
//取出当前cell
UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
UIImage * image = [UIImage imageNamed:@"xz_tb"];
if ([cell.imageView.image isEqual:image]) 
{//如果为选中 变成未选中
     cell.imageView.image = [UIImage imageNamed:@"mr_tb"];
     [self.indexPaths removeObject:indexPath];
}else{//如果为未选中 变成选中
      cell.imageView.image = [UIImage imageNamed:@"xz_tb"];
      [self.indexPaths addObject:indexPath];
}
 UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
UIImage * image = [UIImage imageNamed:@"xz_tb"];
if ([cell.imageView.image isEqual:image])
 {//如果为选中
       cell.imageView.image = [UIImage imageNamed:@"mr_tb"];
       [self.indexPaths removeObject:indexPath];
}else{
       if (self.indexPaths.count >= 2)
       {//如果当前数组存储的索引超过两个直接返回
        [self showMessage:@"最多只能选择两个"];
         return;
        }else{
                cell.imageView.image = [UIImage imageNamed:@"xz_tb"];
                [self.indexPaths addObject:indexPath];
            }
            
        }

自定义cell单选

for (int i = 0; i < self.deals.count; i++) {
        Deal *deal = self.deals[i];
        if (i != indexPath.row) {
            deal.checked = YES;
        }else{
            deal.checked = NO;
        }
    }
# Deal 是数据模型   self.deals 是存放数据模型的数组
上一篇下一篇

猜你喜欢

热点阅读