获取行和列中的单元格 (Cocoa)

Get the cell in a row and column (Cocoa)

我需要在不使用 tableview 函数的情况下获取指定行的列中包含的单元格。例如:

for a in 0...tableview!.numberOfRows {
    let column = tableview.tableColumns[2]
    let cell = cell in column at the row a
}

你有什么解决办法吗?

编辑:在 Cocoa

我解决了这个问题(检索每个单元格中的项目的值),谢谢 Willeke

for a in 0...tableview!.numberOfRows-1 {
     let cell = tableview.view(atColumn: 2, row: a, makeIfNecessary: false) as? cella
     print(cell?.tipo.title)
}