如何在iPhone中动态地将框架分配给控制器?

发布于 2024-11-09 12:33:21 字数 121 浏览 2 评论 0原文

我知道问这个问题很愚蠢,但我是 ipad 新手,我的应用程序支持横向和纵向模式。我想将框架分配给每个控制器(标签、按钮等),以便在任何模式下控制器保持正确的对齐。请问谁能告诉我如何将框架分配给控制器?

提前致谢!

I know its silly question to ask but I am new to ipad and my app supports both mode landscape as well as portrait.I want to assign frame to every controller(labels, buttons, etc) in such a way that in whatever mode the controller remain in proper alignment.Please can anyone tell me how I can assign frame to controllers?

Thanks in advance!

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

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

发布评论

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

评论(1

皇甫轩 2024-11-16 12:33:22

不要将控制器与视图混淆。视图有框架。首先,您必须通过在 shouldAutorotateToInterfaceOrientation: 方法中为所有支持的方向返回 YES 来启用旋转。然后,您可以声明一个方法,为作为参数传递的方向设置视图。为每个方向的每个子视图定义框架。

然后从 layoutSubviews 和/或在方向更改期间调用的任何方法(如 didRotateFromInterfaceOrientation:)调用此方法

。您还可以查看Autoresize Masks

Don't confuse controllers to views. Views have frames. First of all you will have to enable rotation by returning YES for all supported orientation in shouldAutorotateToInterfaceOrientation: method. Then you can declare a method that sets up the views for an orientation passed as argument. Define frames for each subview in each orientation.

Then call this method from layoutSubviews and/or any of the methods called during an orientation change like didRotateFromInterfaceOrientation:

You can also look at Autoresize Masks.

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