在 iPhone / iPad 上检测 180 度翻转

发布于 2024-10-11 18:02:24 字数 818 浏览 1 评论 0原文

我正在 iPhone 应用程序中对各种视图(从纵向到横向)进行一些重新调整。如果用户执行 Portrait -> 则效果很好。风景->肖像 ->景观(当我做一些数学计算时,会重新定位视图)。

然而,如果用户从Portait ->纵向颠倒,或横向左 ->景观 好吧,我的代码不起作用。

我可以检测到 180 度翻转并忽略它吗?我尝试了以下方法:

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    if ((fromInterfaceOrientation == UIInterfaceOrientationPortrait) && 
        (UIDeviceOrientationIsPortrait(self.interfaceOrientation))
    {
    } 
    else if ((fromInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
             (fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight) && 
             (UIDeviceOrientationIsLandscape(self.interfaceOrientation)))
    {
    } 
    else 
    {
      // Do something - it didn't flip 180.
    }
}

I am doing some rejigging of various views from portrait to landscape in my iPhone app. This works fine if the user does Portrait -> Landscape -> Portrait -> Landscape (as I do some math do relocate the views).

However if a user goes from Portait -> Portrait upside down, or Landscape Left -> Landscape Right, my code doesn't work.

Can I detect the 180 flip and ignore it? I tried the following:

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    if ((fromInterfaceOrientation == UIInterfaceOrientationPortrait) && 
        (UIDeviceOrientationIsPortrait(self.interfaceOrientation))
    {
    } 
    else if ((fromInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) || 
             (fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight) && 
             (UIDeviceOrientationIsLandscape(self.interfaceOrientation)))
    {
    } 
    else 
    {
      // Do something - it didn't flip 180.
    }
}

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

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

发布评论

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

评论(1

影子是时光的心 2024-10-18 18:02:24

您需要在逻辑的这一部分周围加上括号:

fromInterfaceOrientation == UIInterfaceOrientationLandscapeLeft || fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight

..否则您的逻辑将不会按照您的预期出现。 && 的优先级高于 ||

You need to have parentheses around this part of your logic:

fromInterfaceOrientation == UIInterfaceOrientationLandscapeLeft || fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight

.. otherwise your logic won't come out as your are expecting. && has higher precedence over ||.

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