如何将我的视图控制器 nib 文件添加为另一个根视图控制器的子视图
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是我用来向导航控制器添加新视图控制器的典型代码:
用您自己的视图控制器类名替换上面的 NextViewController,并用您自己的 NIB 文件名替换上面的“NextViewController”。
在我的应用程序中,导航控制器是在我的应用程序委托类中定义和创建的,因此上面的 appDelegate 是通过以下语句得出的:
当然,您可以用您的应用程序委托类名称替换 MyAppDelegate。
Here is the typical code that I use to add a new view controller to my navigation controller:
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:
And you would of course substitute your app delegate class name in place of MyAppDelegate.