Xcode 方向 UIView

发布于 2024-10-22 06:49:16 字数 48 浏览 3 评论 0原文

我想对横向模式使用与纵向模式不同的 UIView,这可能吗?如果可以,我该怎么做?

I would like to use a different UIView for Landscape than for Portrait mode, is that possible and if so how do I do this?

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

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

发布评论

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

评论(3

北方的巷 2024-10-29 06:49:16

在 .h 文件中使用一个全局变量“currentOrientationView”。
当您的设备要从任何界面方向旋转时,它将调用“WillRotateToInterfaceOrientation:”,此方法有一个参数,用于告知设备将旋转到的界面方向,因此将您的条件放入此方法中并设置值“currentOrientationView”,相应的视图为:

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{
if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
    currentOrientationView=potraitView;
}else {
    currentOrientationView=landscapeView;;
}}

Take a global variable say "currentOrientationView" in .h file.
When ever your device is going to rotate from any interface orientation it will call "WillRotateToInterfaceOrientation:",this method has a parameter that tells the interface orientation to which the device is going to rotate so put your condition in this method and set the value of "currentOrientationView" with corresponding view as:

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{
if (UIInterfaceOrientationIsPortrait(toInterfaceOrientation)) {
    currentOrientationView=potraitView;
}else {
    currentOrientationView=landscapeView;;
}}
雅心素梦 2024-10-29 06:49:16

您必须使用 shouldAutorotatetointerface 方向方法,
在这个方法中,您必须放置类似

[self.addSubview:newView];的代码

you must use the method shouldAutorotatetointerface orientation,
and inside this method you have to put code like

[self.addSubview:newView];

任谁 2024-10-29 06:49:16

使用 willRotateToInterfaceOrientation 交换视图。对于您想要支持的所有方向,shouldAutorotateToInterfaceOrientation 应该返回 YES。

Use willRotateToInterfaceOrientation to exchange views. shouldAutorotateToInterfaceOrientation should return YES for all orientations you'd like to support.

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