UIScreen类

时间:2023-03-10 03:14:59
UIScreen类
 CGRect screenBounds = [ [UIScreen mainScreen]bounds];//返回的是带有状态栏的Rect
NSLog(@"%@", NSStringFromCGRect(screenBounds)); CGRect viewBounds = [ [UIScreen mainScreen]applicationFrame];//不包含状态栏的Rect
NSLog(@"%@", NSStringFromCGRect(viewBounds)); CGRect statusBarRect = [[UIApplication sharedApplication]statusBarFrame];
NSLog(@"%@", NSStringFromCGRect(statusBarRect));