0

我有带有 .h 和 .m 类的 vie 控制器 nib 文件,我想将此视图作为子视图添加到我的 rootview 控制器导航控制器

如何添加它..我想要一个语法..请帮助我....

4

1 回答 1

1

这是我用来向导航控制器添加新视图控制器的典型代码:

NextViewController *controller = [[NextViewController alloc]
             initWithNibName:@"NextViewController" bundle:nil];
[appDelegate.navController pushViewController:controller animated:YES];
[controller release];   

用你自己的视图控制器类名替换上面的 NextViewController,用你自己的 NIB 文件名替换上面的“NextViewController”。

在我的应用程序中,导航控制器是在我的应用程序委托类中定义和创建的,因此上面的 appDelegate 是通过以下语句到达的:

MyAppDelegate *appDelegate;
appDelegate = [[UIApplication sharedApplication] delegate];

您当然会用您的应用程序委托类名称代替 MyAppDelegate。

于 2010-07-14T21:05:57.230 回答