-1

我正在研究 xcode4.3.2 并且我已经创建了选项卡式应用程序 7 现在我想向它添加导航控制器,有人可以帮助我吗???

4

2 回答 2

1

 在applicationDidFinishingLoading你的AppDelegate

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;
于 2012-05-16T08:41:08.407 回答
0

他们在互联网上有很多教程,但这里有一些问题:

开始创建您的选项卡式应用程序

在任何选项卡的每个“第一视图”:

编辑器/嵌入/导航控制器

于 2012-05-16T08:25:50.950 回答