I have n sections (known amount) and X rows in each section (unknown amount. Each row has a UITextField. When the user taps the \"Done\" button I want to iterate through eac
Here is a nice swift implementation that works for me.
func animateCells() { for cell in tableView.visibleCells() as! [UITableViewCell] { //do someting with the cell here. } }