At the start of my app, the status bar is hidden, due to the Info.plist setting called Status bar is initially hidden
. Later on, I want to show the status bar using:
[[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES];
but I get a warning saying that the function is deprecated. Does anybody know what the new function is?