ios - 7之状态栏黑底白字

第一中   在plist文件里面 设置View controller-based status bar appearance的值为no 
在appDelegate里面添加以下代码 (这个不怎么会用)
               if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
        self.window.frame =  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
        [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
    }
第二种 在plist文件里面 设置View controller-based status bar appearance的值为no
 在appDelegate添加  [application setStatusBarStyle:UIStatusBarStyleLightContent];
然后再设置你的Navication Controller的bar上20 是黑色的下面是你想要的瑶瑟 

你可能感兴趣的:(IOS,学习之网络)