无法在iOS 7上更改状态栏背景颜色

前端之家收集整理的这篇文章主要介绍了无法在iOS 7上更改状态栏背景颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在iOS 7中更改状态栏的背景颜色,

这是我的代码片段:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [UIApplication sharedApplication].statusBarHidden = NO;

        self.window.clipsToBounds = YES;
        [[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleLightContent];
        self.window.frame =  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
        self.window.bounds = CGRectMake(0,self.window.frame.size.height);

        ...
        ...


}

当我写这个它显示状态栏与黑色背景我想要它与红色背景


如何用红色背景而不是黑色改变状态栏的颜色?

解决方法

在iOS 7中,状态栏是透明的.将您的视图的backgroundColor设置为红色.

或者您必须在视图上添加20px高的子视图,并显示红色.

Apple Transition Guide

还要确保你的preferredStatusBarStyle是UIStatusBarStyleLightContent.并在info.plist中将基于控制器的状态栏设置为NO

希望它会帮助你…欣赏编码..

原文链接:https://www.f2er.com/iOS/337011.html

猜你在找的iOS相关文章