In Swift, I have a tableview that dynamically creates custom cells. Every single one of these cells has a textfield. How do I call all of the textfields user inputs? My intention is to create a button that appends all of them to an array. I know how to do everything except call the cell data and it needs to be dynamic. I was thinking of the following below. Am I on the right track? Thanks
//Psuedo
FOR LOOP {
array.append(tbl.cellForRowAtIndexPath(<#indexPath: NSIndexPath#>).SOME_SWIFT_METHOD())
}