Is it possible to reload the main view of a view controller from its XIB file in its viewWillAppear method? The method make significant changes to the view, which would be difficult to reverse. When the view controller gets pushed off the navigation stack, the method has to deal with a changed view. It would be much easier if I could just relax the view from the XIB. It seems that the Apple implementation assumes that the view will remain static, and can therefore be reused.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
You can update large portions of your view in the -viewWillAppear. There is no stipulation what you can or can't update there. Just make sure you account for everything, when you do. I have used -viewWillAppear to refresh my view with information, so you can use that to load an initialize what you need rather than -viewDidLoad. |
|||
|
|
-viewWillAppear:method before the view is actually loaded. If you need to be sure the view is loaded in your implementation of-viewWillAppear:(e.g. if you want to access an outlet), just include(void)self.view;at the top of your implementation. – Kevin Ballard Nov 29 '11 at 21:32