如何分离 iPhone 视图的不同部分?

发布于 2024-10-26 21:02:48 字数 124 浏览 2 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

亣腦蒛氧 2024-11-02 21:02:48

您可以创建 2 个 UIViewController(s):

  • HeaderViewController.m(带有 .h 和 .xib)
  • FooterViewController.m(带有 .h 和 .xib)

然后在您的视图中通过代码添加它们:(如果需要,也可以通过 Interface Builder)

HeaderViewController *header = [[HeaderViewController alloc] init];
[header setFrame:CGRectMake(0,0, 320, 100)]; // For example
[self.view addSubview:header.view];

在 IB 中:在 IB 中添加一个新的 UIViewController,通过 HeaderViewController 更改 UIVIewController 类,将其与 IBOutlet (标头)链接,然后您只需执行[self.view addSubview:header.view];

在此处输入图像描述

You can create 2 UIViewController(s):

  • HeaderViewController.m (with .h and .xib)
  • FooterViewController.m (with .h and .xib)

Then in you view you add them by code: (Or via Interface Builder if you want)

HeaderViewController *header = [[HeaderViewController alloc] init];
[header setFrame:CGRectMake(0,0, 320, 100)]; // For example
[self.view addSubview:header.view];

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];.

enter image description here

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