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.
Try this.
add this key into info.plist file
View controller-based status bar appearance
set value for this to:- No
I added the following to my info.plist:
Status bar is initially hidden
with value YES
I also have View controller-based status bar appearance
with value NO