I use an UITableViewController
into a Navigation Controller
that comes up when an UIButton
pressed. When the button has been pressed the <
If anyone has the same problem in future, this is the answer.
Step 1: Add this to your .plist file.
View controller-based status bar appearance ---> NO
Step 2: These two lines to your appDelegate into didFinishLaunchingWithOptions method.
[[UIApplication sharedApplication] setStatusBarHidden:NO];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];