iPhone 6 (Plus) screen size
There were many articles written and questions asked about iPhone 6 and iPhone 6 Plus screen sizes. This article provides a great explanation. However, I am confused when testing my app in the simulator. I have the following code in AppDelegate . - (BOOL) application: (UIApplication *) application didFinishLaunchingWithOptions: (NSDictionary *) launchOptions { UIScreen *screen = [UIScreen mainScreen]; NSLog(@"Screen width %.0f px, height %.0f px, scale %.1fx", (double) screen.bounds.size.width, (double) screen.bounds.size.height, (double) screen.scale); return YES; } I get the following