相关概念
// 竖屏时,返回的是不带有状态栏的Rect.横屏时,返回整个屏幕Rect
[UIScreen mainScreen].applicationFrame);
//The natural scale factor associated with the screen(自然比例因子)
[UIScreen mainScreen].scale);
//The native scale factor for the physical screen(本机比例因子)
[UIScreen mainScreen].nativeScale);
//Bounds of entire screen in points,带有状态栏
[UIScreen mainScreen].bounds);
//Native bounds of the physical screen in pixels
[UIScreen mainScreen].nativeBounds);