我最近对我的项目进行了更改(添加 SWRevealController 和删除我的 TabbarController),突然之间我的状态栏不会隐藏。
我尝试了以下解决方案:
通过 IB 隐藏使用 在我的基本 View Controller 中隐藏
(BOOL)prefersStatusBarHidden
在 viewdidload 中使用此代码隐藏。
[self prefersStatusBarHidden];
[self performSelectorselector(setNeedsStatusBarAppearanceUpdate)];
- 在 plist 文件中添加 基于 Controller 的状态栏外观设置为 NO。
Best Answer-推荐答案 strong>
在您的应用程序 plist 文件中添加一行,将其命名为“基于 Controller 的状态栏外观”并将其设置为 NO。
关于ios - 状态栏不隐藏 - iOS 7,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19918046/
|