Hi there,
Say I have two UIViewControllers
, all working under a UINavigationController
:
RootViewController
hosts a UITableView which contains a list of domain names.CodeViewController
shows a domain.
A user can view any domain they like; once the domain is viewed in CodeViewController
, the name is added to the store via Core Data.
When the user hits the back button to return to the RootViewController
, I want that new domain to appear in the UITableView
. I can't make this happen.
I've attempted several techniques like flushing out the array that supplies the values to the table; I've put my CD calls into viewWillAppear
(currently in viewDidLoad
).
On the Mac, I'd just use bindings to bind the table to the CD model, but how would you do it on the iPhone? I'm stumped!
Thanks, Aaron.