I'm testing my app using different IOS versions on the IOS Simulator and have run into a problem with IOS 7.1
I'm checking the dimensions in the following way:
float height = [[UIScreen mainScreen]bounds].size.height;
And when I run the IOS iphone 5 (7.1) simulator the I get 480 as the value for the height. When I run the IOS iphone 5 (8.1) simulator I get the value that I would expect 568
The Iphone 5 simulator seems to be acting like an IPHONE 4 when running with IOS 7. Any idea why this would be happening?