I can't seem to find what I am looking for in the Apple documentation. I am saving a simple string to an NSUserDefaults location and I want it to load that string into a UITextField in a view that I have already created. Everything is working great with the data persistence (it is saving and loading correctly) but it will only load the information on viewDidLoad. The user edits the field in a modal view so when I call dismissModalViewControllerAnimated, the view does not register the updated UITextField because viewDidLoad is not being called for the first time. (hope I am explaining this coherently enough - i apologize)
How can I have it update that UITextField immediately so the user can see their updated field? I don't think viewDidAppear is the correct place but I can't figure out where to put it.