如何分离 iPhone 视图的不同部分?
我在 iPhone 应用程序的所有视图控制器中都有一个通用的页眉和页脚。 我想要做的是,我想将页眉和页脚分成不同的 nib、.h 和 .m 文件,并将它们集成到一个视图中。
怎么做呢?
谢谢大家。 大师
I have a common header and common footer in all the view controllers of an iPhone application.
What I want to do is, I want to separate the header and footer into different nib, .h and .m files and want to integrate these into one view.
How to do that?
Thanks all.
Guru
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建 2 个 UIViewController(s):
然后在您的视图中通过代码添加它们:(如果需要,也可以通过 Interface Builder)
在 IB 中:在 IB 中添加一个新的 UIViewController,通过 HeaderViewController 更改 UIVIewController 类,将其与
IBOutlet
(标头)链接,然后您只需执行[self.view addSubview:header.view];
。You can create 2 UIViewController(s):
Then in you view you add them by code: (Or via Interface Builder if you want)
In IB: Add a new UIViewController in IB, change the classe UIVIewController by HeaderViewController, link it with an
IBOutlet
(header), then you just have to do[self.view addSubview:header.view];
.