現在、向きに敏感な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を挿入しましたが、残念ながら検出されませんでした。これについて何かアドバイスがありますか?