uitableview - UITableView内部的UIPickerView值(基于DateCell)更改detailLabel-LMLPHP

我试图使PickerView值显示在UITableView详细标签上。所以我在我的FormCell.swift

func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
  self.detailLabel.text = "\(component)\(row)"
}


但是,它可以正常工作,当我单击下一个单元格时,我的detailLabel会丢失这样的先前值。(我的默认标签是“ 01min 30sec”)

uitableview - UITableView内部的UIPickerView值(基于DateCell)更改detailLabel-LMLPHP

关于这个问题有什么想法吗?这是我关于这个问题的代码。

// FormCell.swift
import UIKit

class FormCell: UITableViewCell, UIPickerViewDelegate, UIPickerViewDataSource {

    // outlet
    @IBOutlet weak var titleLabel: UILabel!
    @IBOutlet weak var detailLabel: UILabel!
    @IBOutlet weak var pickerView: UIPickerView!

    // variable
    var isObserving = false
    let minutes = Array(0...59)

    // initialize pickerView delegate, dataSource
    override func awakeFromNib() {
        super.awakeFromNib()
        self.pickerView.delegate = self
        self.pickerView.dataSource = self

    }

    // tableViewCell's height setup
    class var expandedHeight: CGFloat { get { return 200 } }
    class var defaultheight: CGFloat { get { return 44 } }

    func checkHeight() {
        pickerView.isHidden = (frame.height < FormCell.expandedHeight)
    }


    // for pickerView
    func numberOfComponents(in pickerView: UIPickerView) -> Int {
        return 2
    }
    func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
        return minutes.count
    }
    func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView {

        let pickerLabel = UILabel()
        var titleData = ""
        titleData = "\(minutes[row])"
        pickerLabel.text = titleData
        return pickerLabel
    }
    func pickerView(_ pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat {
        return pickerView.frame.width / 3
    }

    func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
        self.detailLabel.text = "\(component)\(row)"
    }




    // set observer for expanding
    func watchFrameChanges() {
        if !isObserving {
            addObserver(self, forKeyPath: "frame", options: [NSKeyValueObservingOptions.new, NSKeyValueObservingOptions.initial], context: nil)
            isObserving = true;
        }
    }
    func ignoreFrameChanges() {
        if isObserving {
            removeObserver(self, forKeyPath: "frame")
            isObserving = false;
        }
    }

    override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
        if keyPath == "frame" {
            checkHeight()
        }
    }

}


我的控制器

// AddCircuitVC.swift
import UIKit

class AddCircuitVC: UITableViewController {

    let formCellID = "formCell"
    var selectedIndexPath: IndexPath?


    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 9
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let itemData = dataArray[indexPath.row]
        var cellID = wordCellID

            cellID = formCellID
            let cell = tableView.dequeueReusableCell(withIdentifier: cellID) as? FormCell
            cell?.titleLabel.text = itemData[titleKey]

            return cell!


    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let previousIndexPath = selectedIndexPath

        if indexPath == selectedIndexPath {
            selectedIndexPath = nil
        } else {
            selectedIndexPath = indexPath
        }

        var indexPaths: Array<IndexPath> = []
        if let previous = previousIndexPath {
            indexPaths += [previous]
        }
        if let current = selectedIndexPath {
            indexPaths += [current]
        }

        if indexPaths.count > 0 {
            tableView.reloadRows(at: indexPaths, with: UITableViewRowAnimation.automatic)
        }

    }

    // observer
    override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
            (cell as! FormCell).watchFrameChanges()
    }
    override func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
            (cell as! FormCell).ignoreFrameChanges()
    }

    override func viewWillDisappear(_ animated: Bool) {
        super.viewWillDisappear(animated)
        for cell in tableView.visibleCells {
            if cell.isKind(of: FormCell.self) {
                (cell  as! FormCell).ignoreFrameChanges()
            }
        }
    }

    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
            if indexPath == selectedIndexPath {
                return FormCell.expandedHeight
            } else {
                return FormCell.defaultheight
            }
    }
}

最佳答案

您只需在self.detailLabel.text委托方法中设置表格单元格的pickerView

因此,当您从屏幕上滚动单元格然后再次在屏幕上滚动时,表格视图单元格会“忘记”之前设置的内容。

您需要修改cellForRowAt indexPath:表格视图数据源方法以返回cell.detailLabel.text的值,这意味着您的最终数据源(itemData中的dataArray词典)需要为选择器设置的持续时间。

我建议在itemData中创建customTableViewCell时,将cellForRowAt indexPath:词典作为属性或参数传递,并且当用户选择持续时间时,设置词典条目并确保将其保存在/ cc中>。

10-08 14:52