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

oc 解决状态栏干扰...

时间:2014-11-07 00:57:33      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

#pragma mark - 去除状态栏干扰的方法
- (void)viewDidLoad {
    [super viewDidLoad];
    if (_tableView.style == UITableViewStylePlain) {
        UIEdgeInsets contentInset = _tableView.contentInset;
        contentInset.top = 20;
        [_tableView setContentInset:contentInset];
        
        UIView *barBackground = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 20)];
        barBackground.backgroundColor = [UIColor colorWithWhite:1 alpha:0.9];
        [self.view addSubview:barBackground];
    }
    // Do any additional setup after loading the view, typically from a nib.
}
UIEdgeInsets是一个结构体,上下左右四个方向都可以让出位置.

oc 解决状态栏干扰...

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/shinechen/p/4080280.html

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