gpt4 book ai didi

swift - TableViewController 中的多个自定义单元格

转载 作者:行者123 更新时间:2023-11-30 11:13:39 25 4
gpt4 key购买 nike

场景

<小时/>

|第一个单元 |

<小时/><小时/>

|第二个细胞||开关 || |

<小时/><小时/>

|第三单元 ||文本字段 |

<小时/>

我创建了一个包含三个不同类的动态表格 View :SecondTableCell(其中有一个开关的导出)和ThirdTableCell(其中有一个 textField 的导出) )

开关已关闭。

我需要查看 textField.isUserInteractionEnabled = false 然后打开开关。

我该怎么做?

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var customTableView: UITableView!

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

let cellSwitch = tableView.dequeueReusableCell(withIdentifier: "cellSwitch")! as! SwitchTableViewCell
let cellText = tableView.dequeueReusableCell(withIdentifier: "cellText")! as! TextFieldTableViewCell

}

class SwitchTableViewCell: UITableViewCell {

@IBOutlet weak var switchOutlet: UISwitch!

@IBAction func switchAction(_ sender: UISwitch) {
if sender.isOn == true{
print("swithOn")
}else{
print("swithOff")
}
}

}


class TextFieldTableViewCell: UITableViewCell {

@IBOutlet weak var textFieldColor: UITextField!
}

最佳答案

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, SwitchDelegate {

@IBOutlet weak var customTableView: UITableView!

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


let cellSwitch = tableView.dequeueReusableCell(withIdentifier: "cellSwitch")! as! SwitchTableViewCell
let cellText = tableView.dequeueReusableCell(withIdentifier: "cellText")! as! TextFieldTableViewCell

cellSwitch.delegate = self
cellText.delegate = self
}

func valueDidChange(isOn: Bool) {
tableView.visibleCells.forEach { cell
if let cell = cell as? TextFieldTableViewCell {
cell.textField.isUserInteractionEnabled = false
}
}
}

}

protocol SwitchDelegate {
func valueDidChange(isOn: Bool)
}

class SwitchTableViewCell: UITableViewCell {

@IBOutlet weak var switchOutlet: UISwitch!
var delegate: SwitchDelegate?

@IBAction func switchAction(_ sender: UISwitch) {
delegate?.valueDidChange(isOn: sender.isOn)
}
}


class TextFieldTableViewCell: UITableViewCell {
@IBOutlet weak var textField: UITextField!
}

关于swift - TableViewController 中的多个自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51934226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com