当导航控制器为纵向时,将一个视图中的方向设置为纵向

发布于 2024-10-07 13:45:52 字数 72 浏览 3 评论 0原文

如果我的应用程序处于横向位置,然后按下按钮来加载信息视图,我如何将信息视图设置为仅支持纵向位置,从而在加载视图时将方向更改为纵向?

If my application is in the Landscape position and then they press a button to load the info view, how can I set the info view to only support the portrait position, and therefore change the orientation to portrait when the view is loaded?

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

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

发布评论

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

评论(2

流心雨 2024-10-14 13:45:52

也许是这样的:

[application setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];

Maybe something like this:

[application setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];
猥︴琐丶欲为 2024-10-14 13:45:52
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (UIInterfaceOrientationPortrait == interfaceOrientation )
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (UIInterfaceOrientationPortrait == interfaceOrientation )
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文