NSColorWell在一个快速的NSTableView中

时间:2017-11-29 20:35:49

标签: cocoa nstableview nscolorwell

任何人都有任何好的建议让NSColorWell成为一个 NSTableView的?大多数其他小部件工作得很好,因为它是基于 在细胞周围,但NSColorWell没有相应的 NSColorWellCell。

2 个答案:

答案 0 :(得分:0)

在基于视图的表视图中,最方便的解决方案是Cocoa Bindings。您可以将颜色的value绑定到模型的NSColor实例。

没有Cocoa绑定在目标视图控制器中创建IBAction方法

@IBAction func colorDidChange(_ sender: NSColorWell)
{
    let row = tableView.row(for: sender)
    let column = tableView.column(for: sender)
    print(row, column, sender.color)
}

在Interface Builder控件中,从颜色井拖动到视图控制器并连接操作。该操作将打印rowcolumn和新颜色。 tableViewNSTableView出口。

如果同一视图中有多个颜色孔,您可以指定不同的标记来区分颜色孔

答案 1 :(得分:0)

我在没有绑定Cocoa的情况下解决了我的问题 我更新了视图,通过升级NSTableCellView(最后3行)一切正常 在作为帐户程序的真实程序中,tableview和outlineview之间存在太多关系,过滤器使我通过绑定重做了大量工作

感谢您的帮助

class ColorsController:  NSWindowController  {

@IBOutlet var colorTable: NSTableView!

let tableViewData =
    [["firstName":"John","lastName":"Doe","emailId":"john.doe@mail.com"],
     ["firstName":"Jane","lastName":"Doe","emailId":"jane.doe@mail.com"]]

var color = [NSColor.red, NSColor.blue]

override func windowDidLoad() {
    super.windowDidLoad()
    self.colorTable.reloadData()
}

@IBAction func actionColorWell(_ sender: NSColorWell) {

    let row = colorTable.row(for: sender as NSView)
    color[row] =  sender.color
    colorTable.reloadData()
    let select1 : IndexSet = [row]
    colorTable.selectRowIndexes(select1, byExtendingSelection: false)
    }
}

extension ColorsController : NSTableViewDataSource, NSTableViewDelegate{
func numberOfRows(in tableView: NSTableView) -> Int {
    return tableViewData.count
}

func tableView(_ tableView: NSTableView, viewFor tableColumn: NSTableColumn?, row: Int) -> NSView?{

    let identifier = (tableColumn?.identifier)!
    switch identifier.rawValue {
    case "firstName" :
        let  result  = tableView.makeView(withIdentifier: identifier, owner: self) as! NSTableCellView
        result.textField?.stringValue = tableViewData[row][(tableColumn?.identifier.rawValue)!]!
        result.textField?.textColor = color[row]
        return result

    case "lastName" :
        let  result  = tableView.makeView(withIdentifier: identifier, owner: self) as! NSTableCellView
        result.textField?.stringValue = tableViewData[row][(tableColumn?.identifier.rawValue)!]!
        result.textField?.textColor = color[row]
        return result

    case "emailId" :
        let  result  = tableView.makeView(withIdentifier: identifier, owner: self) as! KSDataCellView
        result.textField?.stringValue = tableViewData[row][(tableColumn?.identifier.rawValue)!]!
        result.textField?.textColor = color[row]
        result.colorWell.color = color[row]
        return result

    case "color" :
        let result = tableView.makeView(withIdentifier: identifier, owner: self) as! NSColorWell
        result.color = color[row]
        return result

    default:
        return nil
    }
}
}

class KSDataCellView: NSTableCellView {

    @IBOutlet weak var colorWell:NSColorWell!
}