2012-05-16 63 views

回答

1

在你AppDelegateapplicationDidFinishingLoading

UIViewController *viewController1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil]; 
UIViewController *viewController2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil]; 
UINavigationController *myNav1=[[UINavigationController alloc] initWithRootViewController:viewController1]; 
UINavigationController *myNav2=[[UINavigationController alloc] initWithRootViewController:viewController2]; 
self.tabBarController.viewControllers = [NSArray arrayWithObjects:myNav1, myNav2, nil]; 
self.window.rootViewController = self.tabBarController; 
+0

這篇文章幫助了我:)謝謝你 – amrita

0

他們大量的教程在互聯網上,但這裏的一些問題:

開始創建選項卡式應用程序的任何標籤的

在每一個「第一視圖」:

編輯/嵌入 - 在/導航控制器

相關問題