Quote:
Originally Posted by Jagged
in
- (void)applicationDidFinishLaunching  UIApplication *)application
{
...
...
// Configure and show the window
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
...
...
}
this is in the <AppName>AppDelegate.m
|
The navigation controller is not created at app launching but when the user clicks on a specific tab. AppDelegate manages only the tab bar.
On the other hand, FirstView manages the navigation bar.
I can't understand, please help ...