如何根据 UISwitch 所在的单元格更改 UISwitch 的功能
How to change the function a UISwitch does based on which cell that UISwitch is in
我将尝试使我的尝试在书面上有意义。
我使用代码而不是 tableview 单元格和 uiswitch 的故事板。单元格的数量基于计数。我如何 select 当不同单元格内的 uiswitch 的值发生变化时会发生什么。
我觉得我需要函数 didselectrow 但我不知道如何访问它的 uiswitch。正如您在 handlesswitchaction 函数中看到的,每个 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:
...
}
或者如果它是动态的,您需要从后端获取一些属性以了解如何处理。
我将尝试使我的尝试在书面上有意义。
我使用代码而不是 tableview 单元格和 uiswitch 的故事板。单元格的数量基于计数。我如何 select 当不同单元格内的 uiswitch 的值发生变化时会发生什么。
我觉得我需要函数 didselectrow 但我不知道如何访问它的 uiswitch。正如您在 handlesswitchaction 函数中看到的,每个 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:
...
}
或者如果它是动态的,您需要从后端获取一些属性以了解如何处理。