I am trying to hide the status bar, or at least change the color of the icons to white because they don't fit with my design. I have tried to put "none" and "lighten" from storyboard, and by using this code:
-(void)viewDidAppear:(BOOL)animated{
[[UIApplication sharedApplication] setStatusBarHidden:YES];
}
...and setting hide status bar at app launch, but the status bar is still, stuck there. There was no way to change the color of the icons either. Why?