iPad 状态栏方向锁定(仅限横向/纵向)

发布于 2024-10-02 23:35:01 字数 281 浏览 4 评论 0原文

我一直在开发仅横向的 iPad 应用程序(如果您同时支持左右横向模式,则可以使用)。 视图设置正确,但状态栏有问题。 iPad 的状态栏会自行自动旋转,我找不到任何可以覆盖它的东西。状态栏支持所有方向,无论 info.plist 中找到什么(支持的方向和初始方向)。

我找到了一种解决方法,通过在 UIApplicationDelegate 中运行计时器并每次强制状态栏上的方向,但这很丑陋并且会导致状态栏跳动。

有什么方法可以锁定iPad的状态栏以仅支持横向(左右)吗?

提前致谢, 〜纳塔纳夫拉。

I've been working on a Landscape only iPad app (which is allowed if you support both right and left landscape modes).
The views are properly set-up, but the status bar is buggy.
The iPad's status bar auto-rotates on it's own, and I couldn't find anything that can override it. The status bar supports all orientations regardless of what is found in the info.plist (Supported orientations and initial orientation).

I have found a workaround, by running a timer in the UIApplicationDelegate and forcing the orientation on the status bar every time, but that's just ugly and 'causes the bar to be jumpy.

Any way to lock the iPad's status bar to support only landscape (right and left)?

Thanks in advance,
~ Natanavra.

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

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

发布评论

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

评论(1

小巷里的女流氓 2024-10-09 23:35:01

你的一些代码会有所帮助,但这是我通常在 ViewController 中使用的:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
  return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

锁定横向(两侧)。我从来没有遇到过状态栏的任何问题,但我通常会隐藏它。

另外,在 .plist 上我只有 2 个支持的界面方向:
item0 = 横向(右主页按钮)
item1 = 横向(左主页按钮)

希望这有帮助:)

Some of your code would help, but this is what I usually use in my ViewController:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
  return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

Which locks to landscape (both sides). I've never had any problems with the Status Bar, but I usually hide it.

Also, on the .plist I only have 2 supported interface orientations:
item0 = Landscape (Right home button)
item1 = Landscape (Left home button)

Hope this helps :)

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