我有一个带有开关的自定义单元格。我想在tableView(cellForRowAt:)
中添加目标。但是,通过这样做(在示例代码中),我将创建一个强大的参考周期。
然后我尝试使用协议/委托方法,但这意味着所有单元格都将调用同一方法。
如何设置单元格并相应地添加目标?
强大的参考周期:
class customCell: UITableViewCell {
var customSwitch: UISwitch()
// setup switch
}
class VC1: UITableViewController {
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.section {
case 0:
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
cell.customSwitch.addTarget(self, action: #selector(handleSwitch1), for: valueChanged)
return cell
case 1:
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
cell.customSwitch.addTarget(self, action: #selector(handleSwitch2), for: valueChanged)
return cell
default:
fatalError()
}
}
@objc func handleSwitch1(_ sender: UISwitch) { }
@objc func handleSwitch2(_ sender: UISwitch) { }
}
使用委托人:
class customCell: UITableViewCell {
var customSwitch: UISwitch()
weak var delegate: VC1Delegate?
// setup switch
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
customSwitch.addTarget(self, action: #selector(handleSwitch), for: valueChanged)
}
@objc func handleSwitch(_ sender: UISwitch) {
delegate?.handleSwitch1(sender)
}
}
protocol VC1Delegate: class {
func handleSwitch1(_ sender: UISwitch)
func handleSwitch2(_ sender: UISwitch)
}
class VC1: UITableViewController, VC1Delegate {
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.section {
case 0:
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
cell.delegate = self
return cell
case 1:
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomCell
cell.delegate = self
return cell
default:
fatalError()
}
}
@objc func handleSwitch1(_ sender: UISwitch) { }
@objc func handleSwitch2(_ sender: UISwitch) { }
}
答案 0 :(得分:0)
在标有“强引用周期”的代码中,没有强引用周期,因此请继续使用它。
您认为强大的参考周期在哪里?是将self
用作target
吗? docs明确地说:
该控件未将对象保留在目标参数中
这只是意料之中的。如果您无法将self
设置为控件的操作目标,那么我们所有人都会感到高兴。