Search code examples
iosstatusbar

How to change status bar background color


Is there way to change the background color of status bar right now it show white with black icons of battery i want the color black here is the code i am using in viewDidLoad

     if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
    self.edgesForExtendedLayout = UIRectEdgeNone;

Solution

    1. Set UIViewControllerBasedStatusBarAppearance to NO. Call

    2. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

    For more details...check this link

    EDIT: try adding this

    self.extendedLayoutIncludesOpaqueBars = YES;