0

我目前正在尝试构建一个对方向敏感的 iOS 应用程序 - 当我旋转应用程序时,我希望改变视图。

public override bool ShouldAutorotateToInterfaceOrientation (UIInterfaceOrientation toInterfaceOrientation)
    {           
        new UIAlertView("DEBUG", "test", null, "OK", null).Show ();

        // Return true for supported orientations
        if (UserInterfaceIdiomIsPhone) {
            return (toInterfaceOrientation != UIInterfaceOrientation.PortraitUpsideDown);
        } else {
            return true;
        }
    }

我插入了 UIAlert 来测试这是否真的被检测到,但不幸的是没有。我想知道是否可以就此获得任何建议?

4

1 回答 1

0

Apple 更改了 ios6 中的旋转 api - 请参阅Monotouch.Dialog IOS 6 Split view Rotation issue以获得更多帮助(包括一些 MonoTouch)

于 2012-11-18T20:07:33.930 回答