user3839056
user3839056

Reputation: 87

Status Bar Not Hiding

I am having this trouble hiding the status bar. It is still showing up in the simulator and on the iphone.

I made sure in my .plist files that

"Status Bar Is Initially Hidden : YES"
"View controller-based status bar appearance : NO"

Upvotes: 0

Views: 81

Answers (1)

TylerG39
TylerG39

Reputation: 36

The plist value is only specifying to hide the status bar when launching – in your application delegate, you need to set the status bar to hidden:

    [[UIApplication sharedApplication] setStatusBarHidden:YES];

Upvotes: 2

Related Questions