美文网首页
How to change Status Bar text co

How to change Status Bar text co

作者: 代码干货 | 来源:发表于2015-06-18 00:02 被阅读33次

How to change Status Bar text color in iOS 7
Set the UIViewControllerBasedStatusBarAppearance to YES in the .plist file.

  1. In the viewDidLoad do a [self setNeedsStatusBarAppearanceUpdate];

  2. Add the following method:
    <pre>

  • (UIStatusBarStyle)preferredStatusBarStyle
    {
    return UIStatusBarStyleLightContent;
    }
    </pre>

相关文章

网友评论

      本文标题:How to change Status Bar text co

      本文链接:https://www.haomeiwen.com/subject/xkssqttx.html