可能重複:
Tab Bar Application With Navigation Controller添加導航欄的TabBar應用
我的版本的Xcode 4.3.2是。我想在基於tabbar的應用程序中添加導航欄。
謝謝
可能重複:
Tab Bar Application With Navigation Controller添加導航欄的TabBar應用
我的版本的Xcode 4.3.2是。我想在基於tabbar的應用程序中添加導航欄。
謝謝
例如,您可以使用故事板。
在你applicationDidFinishLaunching
方法,你可以看到類似
FirstViewController *firstViewController = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
.
.
.
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:firstViewController, secondViewController, nil];
添加的FirstViewController
到UINavigationController
對象的對象如下
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
插入或添加UINavigationBar
在self.view
非常感謝S P Varma。 – Rushabh 2012-08-17 10:28:16
UINavigationBar的*巴子視圖; bar.topItem.title = @「First」; – Rushabh 2012-08-17 10:15:15
self.navigationController.navigationItem.title = @「First」; 但兩者都不起作用。 – Rushabh 2012-08-17 10:17:04
我的銀行號碼是XXXCCCYYYZZZ,我想要一百萬美元添加到它。 謝謝。 – 2012-08-17 10:27:09