我目前正在尝试构建一个对方向敏感的 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 来测试这是否真的被检测到,但不幸的是没有。我想知道是否可以就此获得任何建议?