[私はタブバーのプロジェクトにナビゲーションコントローラを追加し、それは完全に
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
UIViewController *viewController1 = [[[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil] autorelease];
UIViewController *viewController2 = [[[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil] autorelease];
UIViewController *viewController3 = [[[ThirdViewController alloc] initWithNibName:@"ThirdViewController" bundle:nil] autorelease];
self.tabBarController = [[[UITabBarController alloc] init] autorelease];
self.tabBarController.viewControllers = @[viewController1, viewController2,viewController3];
self.navigationController= [[UINavigationController alloc]initWithRootViewController:self.tabBarController];
// self.window.rootViewController = self.tabBarController取り組んでいます!。
self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
return YES;
私はアニメーションを置くべきだと思います:はい。ほとんどの時間のために。我々は新しいビューに移動する前にコントローラのアニメーションをしたい。ありがとう:) – hqt