码迷,mamicode.com
首页 > 其他好文 > 详细

UIScreen类

时间:2014-06-26 21:12:57      阅读:173      评论:0      收藏:0      [点我收藏+]

标签: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));

 

UIScreen类,布布扣,bubuko.com

UIScreen类

标签:style   class   blog   code   color   string   

原文地址:http://www.cnblogs.com/joesen/p/3807957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!