创建基于iPhone View Based应用程序项目的导航控制器
我基于基于视图的应用程序项目创建了一个应用程序。所以我的应用程序上有多视图 xib 文件。在我想要使用导航控制器的视图之一上。你能帮我一步步在此视图上创建导航栏吗? 假设我的视图名称是 GhazalViewController 。当我从库中添加导航控制器时,我需要委托#$@%@#@ 等等....请帮助我我能做什么? ! :(
I create an application base on view based Application project . so i have multi view xib files on my app . on the one of the views i want using Navigation Controller . can you help me step by step to create navigation bar on this view ?
let's assume my view name is GhazalViewController . when i add Navigation Controller from library , i need delegate #$@%@#@ and so on .... please help me what can i do ? ! :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 UINavigationController,我发现以编程方式创建它比在 IB 中创建它更容易(实际上,我根本不喜欢使用 IB,但那是另一篇文章的内容了:P)。
在您的 applicationDidFinishLaunching: 方法(或任何您想要添加 UINavigationController 的地方)中,只需使用它(假设 GhazalViewController 是您的 nib 和 UIViewController 子类的名称,并且 navigationController 是一个实例变量)
If you're using a UINavigationController, I find it easy to create it programmatically than to do it in IB (actually, I don't like using IB at all, but that's for another post :P).
In your applicationDidFinishLaunching: method (or wherever else you want to add the UINavigationController), just use this (assuming GhazalViewController is the name of your nib and UIViewController subclass, and that navigationController is an instance variable)