tableView中的多个部分一次被选中

时间:2018-03-21 10:58:33

标签: ios swift uitableview tableheader prepareforreuse

我有一个Expanded TableView,其中HeaderView包含一个复选框,一个标签和一个radioButton。

CheckBoxes可以有多个选择。但 radioButton只有单一选择。如果选择了另一个单选按钮,则会在tableView

中取消选择先前选择的按钮

我的问题是,每当我在第0部分选择一个单选按钮时,第8和第16部分的单选按钮也会被选中。滚动时,单选按钮会改变它的状态。任何部分的任何单选按钮都会被选中。我知道这是由于tableView的单元重用属性,但我没有得到如何解决这个问题。我在这里提到了很多解决方案,但似乎都没有。这个问题对我来说真的很麻烦,因为我无法继续前进。如果错误或者我遗失了什么,请指导我。非常感谢。谢谢!

这是我的tableView的HeaderView代码:

import UIKit
import M13Checkbox

protocol HeaderViewDelegate {
    func toggleHeader(header : HeaderView, section : Int)
}

protocol CustomHeaderDelegate: class {
    func didTapButton(in section: Int, headerView : HeaderView)  
}

class HeaderView: UITableViewHeaderFooterView {

@IBOutlet weak var stateCheckBox: M13Checkbox!    
@IBOutlet weak var stateNameLabel: UILabel!
@IBOutlet weak var favouriteState: M13Checkbox!

var delegate : HeaderViewDelegate?
weak var delegateHeader: CustomHeaderDelegate?   
var sectionNumber : Int!
var section : Int!

var radioButtonSelected : Bool = false {
    didSet {
        if radioButtonSelected {
            favouriteState.checkState = .checked
        }else{
             favoriteState.checkState = .unchecked
        }
    }
}

override func awakeFromNib() {
    stateCheckBox.boxType = .square
    stateCheckBox = .bounce(.fill)

    favouriteState.boxType = .circle
    favouriteState.setMarkType(markType: .radio, animated: true)
    favouriteState.stateChangeAnimation = .bounce(.stroke)
}

override init(reuseIdentifier: String?) {
    super.init(reuseIdentifier: reuseIdentifier)
    self.addGestureRecognizer(UITapGestureRecognizer(target : self, action: #selector(selectHeaderView)))
}

required init?(coder aDecoder: NSCoder) {
    super.init(coder : aDecoder)
    self.addGestureRecognizer(UITapGestureRecognizer(target : self, action: #selector(selectHeaderView)))
}

func selectHeaderView(gesture : UITapGestureRecognizer) {
    let cell = gesture.view as! HeaderView
    delegate?.toggleHeader(header: self, section: cell.section)
}

func customInit(titleLabel : String, section : Int, delegate : HeaderViewDelegate) {
    self.stateNameLabel.text = titleLabel
    self.section = section
    self.delegate = delegate
}

@IBAction func selectPrimaryCondition(_ sender: M13Checkbox) {
    // get section when favourite state radioButton is selected
    delegateHeader?.didTapButton(in: sectionNumber, headerView : self)
}

 override func prepareForReuse() {
    // What do do here…??
} 
}

这是我的ViewController类:

func numberOfSections(in tableView: UITableView) -> Int {
    return states.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return states[section].cities.count
}

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 50.0
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    if (states[indexPath.section].expanded) {
        return 44
    }else{
        return 0.0
    }
}

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let headerCell = tableView.dequeueReusableHeaderFooterView(withIdentifier: "headerviewcell") as! HeaderView
    var list = states[section]
    headerCell.customInit(titleLabel: list.stateName, section: section, delegate: self)
    return headerCell
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "subcells") as! CollapsibleCell
    cell.selectionStyle = .none   
    cell.textLabel?.text = states[indexPath.section].cities[indexPath.row]
    return cell
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
            // works for headers or cell??
}

func toggleHeader(header : HeaderView, section : Int){
    states[section].expanded = !states[section].expanded

    for i in 0 ..< states[section].cites.count {
        tableView.reloadRows(at: [IndexPath(row: i, section: section)], with: .automatic)
    }
}

extension ViewController: HeaderDelegate {
        func didTapButton(in section: Int, headerView : HeaderView) {
         print("\(section)")
        }
}

预期输出:

enter image description here

我得到了什么:

enter image description here

0 个答案:

没有答案