标签:style class blog code color string
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));
标签:style class blog code color string
原文地址:http://www.cnblogs.com/joesen/p/3807957.html