UIScreen.bounds与屏幕方向和iOS版本的变化
2015-11-26 本文已影响404人
kDurian
竖屏
CurrentDeviceVersion: 9.1
CurrentInterfaceOrientation:UIDeviceOrientationPortrait
[UIScreen mainScreen].bounds: {{0, 0}, {375, 667}}
[UIScreen mainScreen].applicationFrame: {{0, 20}, {375, 647}}
[UIScreen mainScreen].fixedCoordinateSpace.bounds: {{0, 0}, {375, 667}}
横屏
CurrentDeviceVersion: 9.1
CurrentInterfaceOrientation:UIInterfaceOrientationLandscapeLeft
[UIScreen mainScreen].bounds: {{0, 0}, {667, 375}}
[UIScreen mainScreen].applicationFrame: {{0, 20}, {667, 355}}
[UIScreen mainScreen].fixedCoordinateSpace.bounds: {{0, 0}, {375, 667}}
比较系统版本