gpt4 book ai didi

ios - 在单元格中切换,不在 tableView 方法中传递正确的 bool 值

转载 作者:行者123 更新时间:2023-11-29 02:16:11 25 4
gpt4 key购买 nike

在我的单元类文件中:

class adminImagesCell: UITableViewCell {

@IBOutlet weak var banSwitch: UISwitch!

}

socket 链接到单元格中的开关 View 。在控制删除过程的 TableView 方法中,我有:

 func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {

let cell = tableView.dequeueReusableCellWithIdentifier("adminImagesCell") as? adminImagesCell

println(cell!.banSwitch.on)

tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
}
}

当我触发从此代码删除时,cell!.banSwitch.on 总是打印 FALSE,即使我将开关设置为打开。你知道为什么吗?

最佳答案

问题是您要使一个新单元格出队,而不是在传入的 indexPath 处获取对单元格的引用。您应该使用 cellForRowAtIndexPath,

func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {

let cell = tableView.cellForRowAtIndexPath(indexPath) as? adminImagesCell

println(cell!.banSwitch.on)

tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Automatic)
}
}

关于ios - 在单元格中切换,不在 tableView 方法中传递正确的 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28724010/

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