To clarify, I\'m not trying to do this on my own app, so I don\'t have access to the source code. I am trying to edit info.plist or any other files in the installed .app fil
[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];
OR
Or
try - (BOOL)prefersStatusBarHidden { return YES; } in all of your view controllers.
- (BOOL)prefersStatusBarHidden { return YES; }