info.plist で以下のように指定して横表示にしています。 UIInterfaceOrientation = UIInterfaceOrientationLandscapeRight UIStatusBarHidden = YES 以下のサイトによると iPhone – Develop ? Blog Archive ? UIAlertViewの向き どうやら、UIAlertViewの向きはStatusBarの向きに依存しているようで、StatusBarもLandscapeにしてやらないといけないらしい。 ということで、ステータスバーも横向きにしてやらないといけないようです。非表示にしていたので気がつかなかった。 AppDelegate に以下のように指定して解決しました。 - (void)applicationDidFinishLaunching:(UIApplication *)a