`
lkjxshi
  • 浏览: 28251 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

IOS7 状态栏 保持黑底白字 方法

阅读更多

已测试过可行的方法:

plist里UIViewControllerBasedStatusBarAppearance设置为NO;

在appdelegate中添加

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
        [application setStatusBarStyle:UIStatusBarStyleLightContent];
        self.window.clipsToBounds =YES;
        self.window.frame =  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
        self.window.bounds = CGRectMake(0, 20, self.window.frame.size.width, self.window.frame.size.height);
    }

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics