Как я могу получить ячейку в C #? Код ниже в Swift, я получаю ячейку с этим кодом:
let indexPath = IndexPath(row: index, section: 0) let cell = table.cellForRow(at: indexPath)
но в C # как будет?
Вы попробуйте с этим:
var cell = table.CellAt(NSIndexPath.FromItemSection(indexRow,indexSection));