How can we change the color of the status bar? I know we can change the style by
[application setStatusBarStyle:UIStatusBarStyleBlackOpaque];
Just for information, for those who don't want to change view frames, setting window background will also work.
I wrote this in AppDelegate.
self.window.backgroundColor = [UIColor colorWithRed:0.78f green:0.13f blue:0.11f alpha:1];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent];