I want to change status bar text color to customer color like screenshot attached.
I have used this to make it light content -
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
But text color not changing. Can anyone help?

Here is Apple Guidelines/Instruction about status bar change. Only Dark & light (while & black) are allowed in status bar. It does not allow to set a color (pink, as shown in your image) in status bar.
Here is - How to change status bar style:
If you want to set status bar style, application level then set
UIViewControllerBasedStatusBarAppearancetoNOin your `.plist' file.if you wan to set status bar style, at view controller level then follow these steps:
UIViewControllerBasedStatusBarAppearancetoYESin the.plistfile, if you need to set status bar style at UIViewController level only.In the viewDidLoad add function -
setNeedsStatusBarAppearanceUpdateoverride preferredStatusBarStyle in your view controller.
-
Set value of .plist according to status bar style setup level.
You can set background color for status bar during application launch or during viewDidLoad of your view controller.
Here is result: