I love iPhone, Android, Cocos2d-x
[iPhone] 横表示のアプリで警告画面が縦向きに表示されてしまう
横表示がデフォルトのアプリを作成しているのですが、警告画面が縦向きに表示されてしまいます。
info.plist で以下のように指定して横表示にしています。
UIInterfaceOrientation = UIInterfaceOrientationLandscapeRight
UIStatusBarHidden = YES
以下のサイトによると
iPhone – Develop ? Blog Archive ? UIAlertViewの向き
どうやら、UIAlertViewの向きはStatusBarの向きに依存しているようで、StatusBarもLandscapeにしてやらないといけないらしい。
ということで、ステータスバーも横向きにしてやらないといけないようです。非表示にしていたので気がつかなかった。
AppDelegate に以下のように指定して解決しました。
- (void)applicationDidFinishLaunching:(UIApplication *)application { [UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight; }
関連する投稿
One comment
コメントをどうぞ
Additional comments powered by BackType
1johnston…
…