将多个视图(和笔尖)添加到单个视图控制器

发布于 2024-12-26 04:54:59 字数 165 浏览 2 评论 0原文

我需要在一个 iPad 屏幕上实现多个视图。我正在创建几个类,然后创建相应的 xib 文件。我有一个主(根)视图控制器,它将管理屏幕的所有视图。我不知道如何实现这一目标。我使用 IB 来处理 nib 文件,而不是以编程方式创建视图。这是一个好方法吗?如何设置对特定位置的看法?任何人都可以指导我或有任何更好的方法吗?

I need to implement several views on a single iPad screen. I am creating several classes and then corresponding xib files. I have one main (root) view controller which will manage all the views for the screen. I am not sure how to achieve this. I am using IB for nib files instead of creating views programmatically.Is this a good approach? How to set views on a particular position? Can any one guide me or any better approach.

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

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

发布评论

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

评论(1

ㄖ落Θ余辉 2025-01-02 04:54:59

我不确定这有多正确,但当

UINib *nib = [UINib nibWithNibName:nibName bundle:nil];
NSArray *views = [nib instantiateWithOwner:owner options:nil];
UIView *view = [views objectAtIndex:0];

我想从笔尖获取视图并将其用作 uiview 并移动其框架等时,我会使用它。希望有帮助

im not sure how correct this is but i use

UINib *nib = [UINib nibWithNibName:nibName bundle:nil];
NSArray *views = [nib instantiateWithOwner:owner options:nil];
UIView *view = [views objectAtIndex:0];

when i want to get a view from a nib and use it as a uiview and move its frame around etc. hope that helps

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