如何在NSPopUpButtonCell NSTableView Swift 4.2中更改selectItem?

时间:2019-01-26 13:24:36

标签: swift xcode macos nstableview nspopupbuttoncell

我想更改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中更新。

1 个答案:

答案 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)
    }
}