我需要在不使用tableview函数的情况下获取指定行中列中包含的单元格。例如:
for a in 0...tableview!.numberOfRows {
let column = tableview.tableColumns[2]
let cell = cell in column at the row a
}
您有什么解决方案吗?
编辑:在可可中
答案 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)
}