I have five fields setup on a Signup controller. Username, displayname, password, confirm password and email address.
They are setup with the following:
Updated Swift,
let cell = tableView.cellForRow(at: indexPath) as!
Then you can access all the objects inside your cell the same way as when you are in cellforrowat
cellforrowat
let displayname = cell.labelfordisplayname.text! print("This is the displayname -> \(displayname)")