0

可能重复:
如何在基于视图的应用程序中添加 uinavigation 控制器

我是objective c的新用户.....所以我对objective c没有更多的了解,所以我想知道我们如何将导航控制器添加到基于视图的应用程序中?.....

4

3 回答 3

0

最简单的方法是在 Xcode 中创建一个新项目并选择 Master-Detail Application 模板,然后检查自动生成的代码,尤其是在 AppDelegate 方法-application:didFinishLaunchingWithOptions:中。您将看到如何创建一个新UINavigationController的,如何创建另一个UIViewController并将其添加到窗口UINavigationController,然后将UINavigationController其设置为rootViewController窗口。

于 2012-05-10T07:43:19.497 回答
0

// 在应用程序 delgete 窗口上添加导航控制器。

UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:[[NewViewController alloc] initWithNibName:@"NewViewController" bundle:nil]];

[窗口添加子视图:导航控制器];

于 2012-05-10T07:43:45.207 回答
0

UIViewController *aViewController = ... //你需要分配你的视图控制器对象 UINavigationController *newController = [[UINavigationController alloc] initWithRootViewController:aViewController];

[self presentModalViewController:newController Animation:YES];

//你需要释放控制器 [newController release];

于 2012-05-10T07:49:16.120 回答