How to hide status bar in cocos2d iOS7 games? This problem is not observed in iOS6 and below.
[[UIApplication sharedApplication] setStatusBarHidden: YES];
What's iOS7 alternative for this ?
Its simple...…add below line in info.plist
View controller-based status bar appearance NO
ScreenShot:
The same problem, fixed with
- (BOOL)prefersStatusBarHidden
{
return YES;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With