iOS status bar font color

To solve this implement this

- (UIStatusBarStyle)preferredStatusBarStyle

{
return UIStatusBarStyleLightContent;
}

on my view controller and set UIViewControllerBasedStatusBarAppearance to yes on info.plist of mi app

1 Like