LoginSignup
15
15

More than 5 years have passed since last update.

iOS8で、[[UIScreen mainScreen] bounds]で取得したCGRectが、orientationと関係ある

Last updated at Posted at 2014-09-24

iOS8で、[[UIScreen mainScreen] bounds]で取得したCGRectが、orientationと関係ある

in iOS7

orientationが横の場合、
[[UIScreen mainScreen] bounds].size.width is 320
[[UIScreen mainScreen] bounds].size.height is 568
orientationが縦の場合:
[[UIScreen mainScreen] bounds].size.width is 320
[[UIScreen mainScreen] bounds].size.height is 568

in iOS8

orientationが横の場合:
[[UIScreen mainScreen] bounds].size.width is 568
[[UIScreen mainScreen] bounds].size.height is 320
orientationが縦の場合:
[[UIScreen mainScreen] bounds].size.width is 320
[[UIScreen mainScreen] bounds].size.height is 568
15
15
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
15
15