UIImageView 子视图的自动旋转

发布于 2024-08-03 11:02:13 字数 217 浏览 4 评论 0原文

根视图是一个 UIImage 视图,它有子视图,子视图有子视图。我的根视图将在横向中打开,我已在项目的 .plist 中设置了两个项目属性,并在 applicationDidFinishLaunching 中集成了 application.statusBarOreintation 并验证了它是否有效。

但我所有的子视图都以肖像形式出现。如何在我的子视图上更改此设置?

谢谢 // :)

Root view is a UIImage View, it has subviews, those have subviews. My root view will open in landscape i have set both project properties in the project's .plist and have integrated application.statusBarOreintation in applicationDidFinishLaunching and verified that it works.

But all of my subviews are appearing in portrait. How do I change this on my subviews?

Thanks
// :)

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

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

发布评论

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

评论(1

土豪我们做朋友吧 2024-08-10 11:02:13

你有视图控制器吗?您的 shouldAutorotateToInterfaceOrientation 返回什么?

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
            (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}

如果没有视图控制器,您将必须应用变换来旋转加载的每个视图。

Do you have a viewcontroller? What is your shouldAutorotateToInterfaceOrientation returning?

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
            (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}

Without a viewcontroller, you will have to apply a transform to rotate each view you load.

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