IOS 屏幕尺寸

IOS屏幕尺寸app

一、去掉状态栏的尺寸code

CGRect r = [ UIScreen mainScreen ].applicationFrame;    //OC

二、屏幕尺寸io

CGRect rx = [ UIScreen mainScreen ].bounds;

三、状态栏尺寸class

[[UIApplication sharedApplication] statusBarFrame];