I have a series of UITableViewCell elements with various UIControls to set model values.
When I make a change to model, I am having difficulty finding a way to update the UITableViewCell that displays the calculated property from the model.
I have placed the model in AppDelegate, and accessing it directly from RootViewController. In each UITableViewCell implementation I have a method that updates the model when a change is made.
But then, I am not sure how to refresh the display to show the update. (I tried connecting the same element to two actions. But, the order in which the actions are completed is not consistent, so it first reloads the display, then updates the model).
Any help would be highly appreciated.
Thanks..