第一次点击后,表格视图单元格被取消选择。

时间:2018-11-15 10:47:40

标签: ios swift uitableview

enter image description here

Gif描述:

当用户第一次选择表格视图单元格时(第一次选中该复选框),该单元格被选中,但是此后它被自动取消选择,并且我第二次点击时什么也没有发生。 但是,当我点击第三个时间单元格得到正确选择时,在第4次点击时,它正确取消了选择,依此类推,连续第5次,第6次。

我的didSelectRowAt()方法如下:

func expandableTableView(_ expandableTableView: LUExpandableTableView, didSelectRowAt indexPath: IndexPath) {

    let cell = expandableTableView.cellForRow(at: indexPath) as! FilterTableCell

    let dictKey : String = FilterKeysMapping[FilterKeysFront.object(at: indexPath.section) as! String]!

    if(self.FilterDictAPI[dictKey] == nil){
        self.FilterDictAPI[dictKey] = [indexPath.row: self.FilterValueArray.object(at: indexPath.row)]
    }
    else{
        self.FilterDictAPI[dictKey]![indexPath.row] = self.FilterValueArray.object(at: indexPath.row)
    }

    self.expandableTableView.beginUpdates()
    cell.button.isSelected = true
    self.expandableTableView.reloadRows(at: [indexPath], with: .automatic)
    self.expandableTableView.endUpdates()
    expandableTableView.selectRow(at: indexPath, animated: true, scrollPosition: .none)
}

didDeselectRowAt()方法如下:

   func expandableTableView(_ expandableTableView: LUExpandableTableView, didDeselectRowAt indexPath: IndexPath) {

        print("Did Deselect Cell at section \(indexPath.section) row \(indexPath.row)")
        let cell = expandableTableView.cellForRow(at: indexPath) as! FilterTableCell
        cell.button.isSelected = false        
        let dictKey : String = FilterKeysMapping[FilterKeysFront.object(at: indexPath.section) as! String]!

        if(self.FilterDictAPI[dictKey] != nil){
            self.FilterDictAPI[dictKey]?.removeValue(forKey: indexPath.row)
        }
        print("dict after removing values : \(self.FilterDictAPI)")
    }

cellForRowAt()方法是:

   func expandableTableView(_ expandableTableView: LUExpandableTableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        guard let cell = expandableTableView.dequeueReusableCell(withIdentifier: cellReuseIdentifier) as? FilterTableCell else {
            assertionFailure("Cell shouldn't be nil")
            return UITableViewCell()
        }
        cell.selectionStyle = UITableViewCellSelectionStyle.none
        cell.label.text = "\(self.FilterValueArray.object(at: indexPath.row))" + "  (" + "\(self.FilterCountArray.object(at: indexPath.row))" + ")"
        return cell
    }

表格视图单元格为:

class FilterTableCell: UITableViewCell {

    let label = UILabel()
    let button = UIButton()
    var check = Bool()

    // MARK: - Init

    override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)

        contentView.addSubview(label)
        contentView.addSubview(button)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    // MARK: - Base Class Overrides

    override func layoutSubviews() {
        super.layoutSubviews()

        label.frame = CGRect(x: 42, y: 0, width: contentView.frame.width-42, height: contentView.frame.height)
        self.label.font = UIFont(name: "PlayfairDisplay-Regular", size: 18)
        button.frame = CGRect(x:10, y: contentView.frame.height/2-8, width: 16, height: 16)
        button.setImage(UIImage(named: "CheckboxUnchecked"), for: .normal)
        button.setImage(UIImage(named: "CheckboxChecked"), for: .selected)
        button.setImage(UIImage(named: "CheckboxUnchecked"), for: .highlighted)
    }

}

上述问题仅此而已:第一次点击后,它会自动取消选择。

1 个答案:

答案 0 :(得分:2)

当您重新加载indexPath时,didSelectRowAt中到底发生了什么,该单元格将自动取消选择,并且调用didDeselectRowAt方法,其中cell.button.isSelected = false会删除复选标记。

因此,要在didSelectRowAt方法的以下几行中修正此注释。

self.expandableTableView.beginUpdates()
self.expandableTableView.reloadRows(at: [indexPath], with: .automatic)
self.expandableTableView.endUpdates()

此外,在单元格的prepareForReuse()方法中重置按钮的选择状态。这将解决以下不确定的行为:随机选中复选框或在第一次或第二次点击后选中复选框。

override func prepareForReuse() {
    super.prepareForReuse()

    button.isSelected = false
}