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

时间:2019-05-15 14:16:19

标签: swift nstableview

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

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

您有什么解决方案吗?

编辑:在可可中

1 个答案:

答案 0 :(得分:0)

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

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