Esto fue bastante fácil en Xcode 3. Pero estoy totalmente perdido en Xcode 4. * Parece que IB no se usa en absoluto. Y todo el código de TabBarController está en el código.No mainwindow.xib en Xcode 4 Confundido cómo hacer que mi TabBarController use NavigationController
Pregunta: ¿Cómo agrego un NavigationBarController al código predeterminado que Xcode genera cuando se utiliza una plantilla TabBarController?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
UIViewController *viewController1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UIViewController *viewController2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController1, viewController2, nil];
self.window.rootViewController = self.tabBarController;
[self.window makeKeyAndVisible];
return YES;
}
Hola, GUAU, ambas respuestas están correctas. Voy con la ruta del código por ahora. –