2012-08-17 57 views
-6

可能重複:
Tab Bar Application With Navigation Controller添加導航欄的TabBar應用

我的版本的Xcode 4.3.2是。我想在基於tabbar的應用程序中添加導航欄。

謝謝

+0

UINavigationBar的*巴子視圖; bar.topItem.title = @「First」; – Rushabh 2012-08-17 10:15:15

+0

self.navigationController.navigationItem.title = @「First」; 但兩者都不起作用。 – Rushabh 2012-08-17 10:17:04

+1

我的銀行號碼是XXXCCCYYYZZZ,我想要一百萬美元添加到它。 謝謝。 – 2012-08-17 10:27:09

回答

4

例如,您可以使用故事板。

ss

4

在你applicationDidFinishLaunching方法,你可以看到類似

FirstViewController *firstViewController = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil]; 
. 
. 
. 

self.tabBarController = [[UITabBarController alloc] init]; 
self.tabBarController.viewControllers = [NSArray arrayWithObjects:firstViewController, secondViewController, nil]; 

添加的FirstViewControllerUINavigationController對象的對象如下

UINavigationController *firstNavController = [[UINavigationController alloc] initWithRootViewController:firstViewController]; 
. 
. 
. 
//And in the tabbarController array add the navigationController Object instaed if FirstViewControllerObject 
self.tabBarController.viewControllers = [NSArray arrayWithObjects:firstNavController, secondViewController, nil]; 

而且其完成。現在您的FirstViewController將被視爲導航控制器,並且它將具有導航欄。

編輯

如果你只是想在導航欄上,然後你可以從xib插入或添加UINavigationBarself.view

+1

非常感謝S P Varma。 – Rushabh 2012-08-17 10:28:16