Hi,
I just discovered cocos2d and i'm starting playing with it, I have a very simple application running but I'd like to hide the status bar at the top of the screen, I'm sure it's very simple but I have no clue where to start :).
Here my AppDelegate code:
-(void)applicationDidFinishLaunching:(UIApplication *)application {
// Game began...
[[Director sharedDirector] setLandscape: YES];
//optional for showing frame per sec
[[Director sharedDirector] setDisplayFPS:YES];
MenuScene * ms = [MenuScene node];
[[Director sharedDirector] runScene:ms];
}
Any help would be greatly appreciated.
Thanks,
Pyt