Can someone point me in the right direction with how to set up a UINavigationController inside of a UITabBarController? I have a feeling I'm using initWithRootViewController wrong.
ViewController1 *viewController1 = [[[ViewController1 alloc] initWithNibName:@"ViewController1" bundle:nil] autorelease];
self.navController = [[[UINavigationController alloc] initWithRootViewController:viewController1] autorelease];
ViewController2 *viewController2 = [[[ViewController2 alloc] initWithNibName:@"ViewController2" bundle:nil] autorelease];
ViewController3 *viewController3 = [[[ViewController3 alloc] initWithNibName:@"ViewController3" bundle:nil] autorelease];
ViewController4 *viewController4 = [[[ViewController4 alloc] initWithNibName:@"ViewController4" bundle:nil] autorelease];
self.tabBarController = [[[UITabBarController alloc] init] autorelease];
_tabBarController.viewControllers = [NSArray arrayWithObjects:navController, viewController2, viewController3, viewController4, nil];
self.tabBarController.delegate = self;
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
Thanks for any tips guys.
In the AppDelegate, you put this:
Hope that help (Sorry for the bad english :-) );