标签:style blog color os io ar strong 文件 2014
iOS7中我们通过ViewController重载方法返回枚举值的方法来控制状态栏的隐藏和样式。setStatusBarHidden在iOS7中不起作用了。
- (BOOL)prefersStatusBarHidden
{
if (m_type == UNLOCKLOGIN) {
return YES;
}else if(m_type == MODIFYLOCK){
return NO;
}
return NO;
}下面这个方法在自己项目中没有用到- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}标签:style blog color os io ar strong 文件 2014
原文地址:http://blog.csdn.net/quanqinyang/article/details/39183519