LoginSignup
18
16

More than 5 years have passed since last update.

iOS端末の向き(orientation)を強制的に変更する方法

Posted at

iOS6,iOS7の端末の向きを強制的にPortrait方向に変更する、一番簡単な方法は下記のようにする。

snippet
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger: UIInterfaceOrientationPortrait] forKey:@"orientation"];

UIDeviceのproperty「orientation」を直接変更してしまう。

iOSの向き(orientation)の制御は画面ごとに、orientationを許すだとか、ContainerViewControllerの場合はなどなど、凝りだすと以外とややこしい。

iOS5と6で大幅に仕様が変更されていることもあるので、Googleなどで記事を検索する場合はiOSのバージョンと記事の作成日時はチェックしておいたほうがいいでしょう。

18
16
2

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
18
16