Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cocos2d iOS7游戏如何隐藏状态栏?在 iOS6 及以下版本中未观察到此问题。
[[UIApplication sharedApplication] setStatusBarHidden: YES];
什么是 iOS7 替代品?
它很简单……在 info.plist 中添加以下行
View controller-based status bar appearance NO
截屏:
The same problem, fixed with
- (BOOL)prefersStatusBarHidden { return YES; }