UINavigationController 中的自动旋转

发布于 2024-09-17 07:32:07 字数 629 浏览 2 评论 0原文

有一个 UINavigationController ,其中包含 rootViewController (作为根)和 secondViewController (作为子级)。 rootViewController 应该能够旋转到任何方向(按预期工作,我只是覆盖 shouldAutorotateToInterfaceOrientation),但是 secondViewController 应该在仅纵向模式(此处,我将 shouldAutorotateToInterfaceOrientation 设置为

interfaceOrientation == UIInterfaceOrientationPortrait

问题:从 rootViewController 导航到 secondViewController同时在横向中,secondViewController 不会将其 UI 切换回纵向是否有正确的方法?

There're an UINavigationController with rootViewController (as root) and secondViewController (as a child). The rootViewController should be able to rotate to any orientation (that works as expected, I just override the shouldAutorotateToInterfaceOrientation), but the secondViewController should work in Portrait mode only (here, I set the shouldAutorotateToInterfaceOrientation to

interfaceOrientation == UIInterfaceOrientationPortrait

The issue: after navigating to the secondViewController from the rootViewController while in landscape, the secondViewController doesn't switch its UI back to portrait. Is there a right way to do so?

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

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

发布评论

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

评论(1

南汐寒笙箫 2024-09-24 07:32:07

尝试

[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];  

在您的声明之后添加一个。看看是否有效。

Try putting a

[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];  

After your declaration there. See if that works.

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