I run my app on my iPhone 7 + device and when I try to log the Scale and screen bound sizes, What I get is related to iPhone 5/5s/5c/SE, NOT to my iphone 7 plus specification. This is what I get in log:
CGFloaf scale = [[UIScreen mainScreen] scale];
CGFloat screenHeight = [[UIScreen mainScreen] bounds].size.height;
NSLog (@"Scale: %f", scale);
NSLog (@"screenHeight: %f", screenHeight);
Output :
Scale: 2.000000
screenHeight: 568.000000
Why is that??! I appreciate any help.