Having discovered that awakeFromNib
is begin called multiple times, I tried to implement loadView
in the following way to prevent (nib loading) initialization from repeatedly occurring, with:
- (void)loadView {
[self viewWillLoad];
[super loadView];
[self viewDidLoad];
}
Looks like a good trick to allowing certain arrays and properties to be set-up in viewWillLoad
, but loadView
absolutely won't be called.
Why?
I've done much research about this here and through google.
You're not receiving a
loadView
message because you have this VC and its view in the same nib, with the VC'sview
outlet set to the view. Since the VC already has a view, it has no reason to go load another one.