I have a UITableViewController and a Prototype cell with a UITextField. When I change a textField.text in one of the cells I want it to be changed in all other cells which my tableView now have (for example multiply number by 2 and set to other cell's textField.text output).
This is the behaviour I want to implement: 
Hope this gives you enough to set you on your way.
CodePudding user response:
inside your textFieldDidBeginEditing and textFieldDidChangeSelection delegates, call tableView.reloadData()
