![错误隐藏了ios 7上的satus bar 1
我在使用ios 7时遇到问题。
1.当我从xcode 4.6构建时,我想在ios7上隐藏状态栏
2.App电流在设备ios 7上运行,但相机胶卷的状态栏显示较旧版本的ios。
你能帮我解决上面的问题吗? 非常感谢。
答案 0 :(得分:1)
将以下代码添加到视图控制器:
if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
// iOS 7
[self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
} else {
// iOS 6
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];
}
- (BOOL)prefersStatusBarHidden {
return YES;
}
在 iOS 7
中请将此信息添加到您的info.plist文件中,它会有所不同:)
UIStatusBarHidden UIViewControllerBasedStatusBarAppearance
希望它会有所帮助。
快乐的编码......:)