首页 > 其他 > 详细

oc 解决状态栏干扰...

时间:2014-11-07 00:57:05      阅读:210      评论:0      收藏:0      [点我收藏+]
#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 解决状态栏干扰...

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!