I'm writing a game for iOS using SpriteKit. I want to game to be full-screen, no status bar, etc. How do I hide the status bar?
Asked
Active
Viewed 2,994 times
1 Answers
16
...and just like that... I found it...
in the view controller:
- (BOOL)prefersStatusBarHidden {
return YES;
}

doublea
- 2,546
- 1
- 23
- 35