如何在基于视图的应用程序上获取导航栏

时间:2011-07-27 15:19:22

标签: iphone objective-c

如何将导航栏添加到基于视图的应用程序[模板]

2 个答案:

答案 0 :(得分:0)

以下代码将显示一个新的导航控制器。

MyViewController *v = [[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
UINavigationController *t = [[UINavigationController alloc] initWithRootViewController:v];
[self presentModalViewController:t animated:true]; 
[t release];
[v release];

否则,您可以直接将导航栏添加到与viewcontroller关联的nib文件中。

答案 1 :(得分:0)

AppDelegate.m - 文件中,将其添加到applicationDidFinishLaunching下(或类似名称)。

UINavigationBar *navigationBar = [[UINavigationBar alloc] init];
[window addSubview:navigationBar];