Quote:
Originally Posted by Jagged
did you add your navcontroller to the subviews of the parentview?
Code:
[window addSubview:navigationController.view];
|
The FirstView (navigationcontroller) is well displayed when I click on the tab bar item.
=> the navigationcontroller view is well attached (to me) ???
The issue is when I click on an table item in FirstView in order to display the FirstViewDetail (regular UIView).
The FirstViewDetail viewDidLoad is never called
I can't understand because I don't [window addSubview:navigationController.view] anywhere.
Where I'm supposed to add it?
Phil