如何将我的视图控制器 nib 文件添加为另一个根视图控制器的子视图

发布于 2024-09-10 02:20:26 字数 105 浏览 3 评论 0原文

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

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

i am having vie controller nib file with its classes .h and .m and i want to add this view as a sub view to my rootview controller innavigation controller

how to add it..
i want a syntax to this ..
please help me....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一张白纸 2024-09-17 02:20:26

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

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。

Here is the typical code that I use to add a new view controller to my navigation controller:

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

Substitute in your own view controller class name for NextViewController above, and your own NIB file name in place of "NextViewController" above.

In my applications, the navigation controller is defined and created in my application delegate class, so appDelegate above is arrived at with the following statement:

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

And you would of course substitute your app delegate class name in place of MyAppDelegate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文