12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iOS8から従来の方法で横画面固定をすると黒帯が入る件

Posted at

先日Xcode6にアップデートした時に起きたので忘れないうちに書いておきます!!

iOS7までの従来の方法で横画面固定をしていたのですが、iOS8に対応するべくXcode6にアップデートして実行すると
iOS Simulator Screen Shot 2014.09.30 16.52.43.png

なんじゃこりゃぁぁぁぁ!!!!!!!!!!
仕様なんか変わったのか!?!?バグか!?!?ああん!?!?

って事で調査しました。

結論だけ申し上げますと、
AppDelegateのdidFinishLaunchingWithOptionsに定義していた

self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
の下に
[self.window setFrame:[[UIScreen mainScreen] bounds]];
を追加して対処しました。

iOS Simulator Screen Shot 2014.09.30 16.55.34.png

これでよし。
原因が分かるまで手こずった事は内緒にしたいです。

12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?