I was trying to hide my status bar in iOS 7 (not in iOS6) and did all the things whatever we need to do for this i.e. In plist,
Status bar is initially hidden=YES
and
View controller-based status bar appearance=NO
and in
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
I used
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];
but it didn't work at all so can anyone diagnose the problem? It may be duplicate question but any other answer didn't help me. One more notable thing here is I used UIImage Picker in my application. Any help will be appreciated!!!