我想更改NSTableView中popUp按钮的索引。
func tableView(_ tableView: NSTableView, objectValueFor tableColumn: NSTableColumn?, row: Int) -> Any? {
let dataCell:NSPopUpButtonCell = tableColumn?.dataCell as! NSPopUpButtonCell
dataCell.addItems(withTitles: dataTypes)
return data.type //dataCell
}
func tableView(_ tableView: NSTableView, setObjectValue object: Any?, for tableColumn: NSTableColumn?, row: Int) {
dataSourceArr[row].type = dataTypes[object as! Int]
tableView.reloadData()
}
我可以更新我的dataSource数组,但不能在tableView中更新。
答案 0 :(得分:0)
您可以使用NSTableViewDelegate的willDisplayCell方法来实现。
extension ViewController: NSTableViewDelegate {
func tableView(_ tableView: NSTableView, willDisplayCell cell: Any, for tableColumn: NSTableColumn?, row: Int) {
guard let dataCell = cell as? NSPopUpButtonCell else {return}
dataCell.selectItem(at: row) // or dataCell.selectItem(withTitle: //title)
}
}