18
[UIScreen mainScreen] .bounds.size, iOS8'de yönlendirmeye bağımlı mı?
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: …