You can get cell textFiealdtextField data anywhere where your tableViewtableView is declared just use the following code, You need give just INDEXPATH
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!) }