问题描述
我将努力使我的尝试在写作中有意义。
我为 tableview 单元格和 uiswitch 使用了代码而不是故事板。细胞数基于计数。我如何选择当不同单元格内的 uiswitch 的值发生变化时会发生什么。
我觉得我需要函数 didselectrow 但我不知道如何访问它的 uiswitch。正如您在 handleswitchaction 函数中看到的,每个 uiswitch 都执行操作。
class SettingsCell: UITableViewCell {
lazy var switchControl: UISwitch = {
let switchControl = UISwitch()
switchControl.isOn = true
switchControl.onTintColor = UIColor(red: 55/255,green: 130/255,blue: 250/255,alpha: 1)
switchControl.translatesAutoresizingMaskIntoConstraints = false
switchControl.addTarget(self,action: #selector(handleSwitchAction),for: .valueChanged)
return switchControl
}()
override init(style: UITableViewCell.CellStyle,reuseIdentifier: String?) {
super.init(style: style,reuseIdentifier: reuseIdentifier)
addSubview(switchControl)
switchControl.centerYAnchor.constraint(equalTo: centerYAnchor).isActive = true
switchControl.rightAnchor.constraint(equalTo: rightAnchor,constant: -12).isActive = true
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
//fatalError("init(coder:) has not been implemented")
}
@objc func handleSwitchAction(sender: UISwitch) {
if sender.isOn {
print("Is on")
} else {
print("Is off")
}
}
}
解决方法
在您的 dequeueReusableCell(withIdentifier:for:)
内向您的单元格添加标签
settingsCell.switchControl.tag = indexPath.row
并在 handleSwitchAction
内使用它作为
switch(sender.tag) {
case 0: // First row
case 1: // Second row
// ...
}
标签属性在任何 UIView 中都可用:https://developer.apple.com/documentation/uikit/uiview/1622493-tag
,如果您的内容是静态的,您可以只切换 indexPath.row 而不带标签 在单元格中的行:
switch indexPath.row {
case 0:
...
}
或者如果它是动态的,您需要从后端获取一些属性才能知道如何处理。