iPad 旋转锁定问题

发布于 2024-10-16 06:33:40 字数 163 浏览 0 评论 0原文

你好,我有一个关于 iPad 上旋转的问题,我进行了搜索,但没有找到正确的遮阳篷。

在iPad应用程序中,当我打开一个特殊的覆盖层时,我可以旋转到所有界面方向,我会将界面方向锁定为横向,并且只要覆盖层打开,应用程序就不会旋转。当我关闭此覆盖层时,应该启用旋转。

我希望有人能帮助我

Hellow i have a question about the rotation on iPad i have search but i have not found the correct awnser.

in the iPad app i can rotate to all interface orientations when i open a special overlay i will lock the interface orientacion to lanscape and as long as the overlay is open the application should not rotate. When i close this overlay the rotation should be enabled.

i hope someone can help me

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

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

发布评论

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

评论(1

谜兔 2024-10-23 06:33:40

是的,你可以做到这一点。我还没有测试过这段代码,但我认为它会起作用。

- (BOOL)shouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)interfaceOrientation     {
// Return YES for supported orientations.
       if (showing_OVERLAY == YES) {
            return NO;
       }
  return YES;
}

Yes, you can achieve that. I have not tested this code, but I think it will work.

- (BOOL)shouldAutorotateToInterfaceOrientation(UIInterfaceOrientation)interfaceOrientation     {
// Return YES for supported orientations.
       if (showing_OVERLAY == YES) {
            return NO;
       }
  return YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文