码迷,mamicode.com
首页 > 移动开发 > 详细

ios 设置状态栏背景颜色

时间:2014-10-10 18:52:15      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   strong   sp   on   ad   

第一种方法:

    [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackOpaque;

    self.navigationController.navigationBar.tintColor = [UIColor blackColor];

    if (is_ios_7_Later) {

        self.view.window.frame =  CGRectMake(0, 20, self.view.window.frame.size.width, self.view.window.frame.size.height - 20);

        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent animated:NO];

    }

第二种方法(这方法比较简单):

    UIView *statusBarView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];

    statusBarView.backgroundColor=[UIColor blackColor];

    [self.view addSubview:statusBarView];

    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];

ios 设置状态栏背景颜色

标签:style   color   io   os   ar   strong   sp   on   ad   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/39964637

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