So you have UINavigationController, with a parent table which has one cell
---------------
| paul > |
---------------
And you click on it and get a screen which has textfields that you enter
---------------
| name: paul |
---------------
| age: 23 |
---------------
| hair: brown |
---------------
| etc |
---------------
---------------
| save button |
---------------
When you change the name to Steve, and press the Save button (which pops the view), how do get the initial table to update? I'm using NSUserdefaults to save to and load from. When I pop to the initial view, the name doesn't get changed. ... However, if I restart the app, then it's there.
Can't work out how to update the first table while the app is running.