Hi,
sounds simple but i messed up something...
there's 2 ways i know of how to do this:
1. programmatically:
- (void)applicationDidFinishLaunching

UIApplication *)application{
[[UIApplication sharedApplication] setStatusBarHidden:YES];
}
unfortunately it only hides the status bar after the splash screen shows up and i would like the splash screen to show up already without the status bar.
2. info.plist
adding a field named "Status bar is initially hidden" or "UIStatusBarHidden"
and mark it's checkbox.
in another app i did it worked fine, in here it doesn't.
i looked for differences between the apps but so far i haven't found the problem. anybody?
Thanks!