我知道这些类型的问题之前都是由SO回答的,但我的情况略有不同所以请阅读。
我在tableview单元格中使用了一个按钮。单击按钮,我将显示一个包含操作列表的AlertViewController。在选择操作时,我的按钮文本和我的自定义模型类属性会发生变化。
按钮单击时按钮文本正在更改。但我的问题是单元格没有存储按钮状态。如果我更改第一个单元格的按钮,然后单击第二个单元格按钮,则所有其他按钮将恢复为默认文本。
这是我的代码
设置单元格数据
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("dbColumns", forIndexPath: indexPath) as! CustomColumnTableViewCell
let column = columns[indexPath.row]
cell.dbColumnName.text = column.name
cell.dbColumnOrder.titleLabel?.text = column.order
cell.dbColumnOrder.tag = indexPath.row
print(columns)
cell.dbColumnOrder.addTarget(self, action: #selector(ViewController.showAlert(_:)), forControlEvents: UIControlEvents.TouchUpInside)
return cell
}
点击按钮时的操作
//MARK:Show Alert
func showAlert(sender:UIButton){
let alert = UIAlertController(title: "Column Order", message: "Please select column order", preferredStyle: .ActionSheet)
let index = sender.tag
let indexPath = NSIndexPath(forRow: index, inSection: 0)
alert.addAction(UIAlertAction(title: "None", style: .Default, handler: { (action) in
//execute some code when this option is selected
self.columns[index].order = "None"
self.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
}))
alert.addAction(UIAlertAction(title: "Assending", style: .Default, handler: { (action) in
//execute some code when this option is selected
self.columns[index].order = "Assending"
self.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
}))
alert.addAction(UIAlertAction(title: "Desending", style: .Default, handler: { (action) in
//execute some code when this option is selected
self.columns[index].order = "Desending"
self.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: .None)
}))
self.presentViewController(alert, animated: true, completion: nil)
}
请麻烦我。
答案 0 :(得分:4)
在cellForRowAtIndexPath
方法中设置按钮文字就像这样
首先删除此
cell.dbColumnOrder.titleLabel?.text = column.order
替换此
cell.dbColumnOrder.setTitle("\(column.order)", for: .normal)
还需要增加cell.dbColumnOrder
宽度。
希望它有效