如何关闭行上的开关并打开另一行上的另一个开关
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何关闭行上的开关并打开另一行上的另一个开关相关的知识,希望对你有一定的参考价值。
如何点击tableView行将绿色行上的开关转动,然后当我点击下一行时,我想关闭最后一个开关并打开我点击的行上的开关?这是我迄今为止测试过的......
//the switch variable is located in a custom cell
var answerSwitch = UISwitch()
var previousSwitch = Bool()
var rowNumber = Int()
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if(indexPath.row == rowNumber && cell.answerSwitch == false) {
cell.answerSwitch = true
} else if(indexPath.row == rowNumber && cell.answerSwitch == true) {
cell.answerSwitch = false
}
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if(previousSwitch == false) {
rowNumber = indexPath.row
tableView.reloadData()
previousSwitch = true
} else if(previousSwitch == true) {
tableView.reloadData
previousSwitch = false
}
}
答案
无需每次都重新加载tableview。
在UIViewController中创造乐趣
var enabledSWitchRow: IndexPath = [0,0]
func enableSwitchFor(indexPath: IndexPath) {
//Already answered/on switch cell
let oldcell = tableView.cellForRow(at: enabledSWitchRow)
oldcell.answerSwitch.isOn = false
//selected cell
let newcell = tableView.cellForRow(at: indexPath)
newcell.answerSwitch.isOn = true
enabledSWitchRow = indexPath
}
并从UITableView的didSelect委托调用
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.enableSwitchFor(indexPath: indexPath)
}
以上是关于如何关闭行上的开关并打开另一行上的另一个开关的主要内容,如果未能解决你的问题,请参考以下文章
当用户在 Table View 行上的选项卡时需要将数据传递给 Watchkit 中的另一个详细界面控制器