以下のようなものを作成したいと思います。RootView には TabBar がありません。2 番目のビューからは TabBar が必要です。
私が現在行っていることは、UINavigationController
コントローラーcalassとして使用していることです
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIViewController *rootController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
navigationController = [[UINavigationController alloc] initWithRootViewController:rootController];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window addSubview:navigationController.view];
[self.window makeKeyAndVisible];
return YES;
}
UITabBar
しかし、SecondViewController から tabBarControllerを使用するにはどうすればよいですか?