Hem iOS 7 hem de iOS 8'de aşağıdaki kodu çalıştırdım:
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
BOOL landscape = (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight);
NSLog(@"Currently landscape: %@, width: %.2f, height: %.2f",
(landscape ? @"Yes" : @"No"),
[[UIScreen mainScreen] bounds].size.width,
[[UIScreen mainScreen] bounds].size.height);
Aşağıdakiler iOS 8'in sonucudur:
Currently landscape: No, width: 320.00, height: 568.00
Currently landscape: Yes, width: 568.00, height: 320.00
İOS 7'deki sonuçla karşılaştırıldığında:
Currently landscape: No, width: 320.00, height: 568.00
Currently landscape: Yes, width: 320.00, height: 568.00
Bu değişikliği belirten herhangi bir belge var mı? Yoksa iOS 8 API'larında geçici bir hata mı?