本文介绍了iOS 6中的状态栏颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法在iOS 6中拥有此状态栏?
Is there any way to have this status bar in iOS 6?
在以前版本的iOS中,它有状态栏,但在iOS 6中它似乎按照导航栏颜色..
In previous version of iOS, it has that status bar, but in iOS 6 it seems to follow the navigation bar color..
推荐答案
[[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleBlackOpaque];
或
[[UIApplication sharedApplication]setStatusBarStyle:UIStatusBarStyleBlackTranslucent];
除默认值外可用的选项
这篇关于iOS 6中的状态栏颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!