I have a problem with custom tableview cell with a textfield. So, I have a separate class for a cell with a textfield, but I can\'t retrieve data in my tableview class. There is
You can get cell textField data anywhere where your tableView is declared just use the following code
let indexPath = IndexPath(row: yourRow, section: yourSection)
let cell:InputDataCell = yourTable.cellForRow(at: indexPath) as! InputDataCell
if (cell.yourTextFieald.text?.characters.count)! {
print(cell.yourTextFieald.text!)
}