iOS 选择题之TableView单选与多选的处理

效果

  • 单选


    这里写图片描述
  • 多选


    这里写图片描述

方法

重写 UITableViewCell- (void)setSelected:(BOOL)selected animated:(BOOL)animated{}方法

  • 系统会自动处理 cell的选中与取消,这个可以用来处理单选

  • 对于多选,针对之前的选中状态加以判断即可

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
    
    if (_multiChoose) {  // 多选
        
        // 选中 cell ,并且 之前 未选中 cell,选中它!!!
        if (selected && !_chooseButton.selected){
            _answerLabel.textColor = UIColorFromHexRGB(0xfd9748);
            _chooseButton.selected = YES;
        }
        
        // 取消选中 cell ,并且 之前 选中 cell
        else if (!selected && _chooseButton.selected){
            // 不处理
        }
        
        // 选中 cell ,并且 之前 选中 cell,取消选中!!!
        else if (selected && _chooseButton.selected) {
            _answerLabel.textColor = kDetailTextColor;
            _chooseButton.selected = NO;
        }
        
    }else{  // 单选
        
        UIColor *color;
        if (selected) { // 选中
            color = UIColorFromHexRGB(0xfd9748);
        }else{ // 取消
            color = kDetailTextColor;
        }
        _answerLabel.textColor = color;
        _chooseButton.selected = selected;
    }
}

注意

要结合数据模型进行判断,滚动TableView, cell移出屏幕时,会调用上面的方法,会导致最后选择的一个cell被取消。

也可以禁止TableView滚动。


渐变色

https://github.com/xjh093/JHDraw

你可能感兴趣的:(iOS 选择题之TableView单选与多选的处理)