No, this is not possible with ready-made public APIs.
But with the release of iOS 7 you can change the appearance of the status bar. Therefore, I publish my decision.
From a separate view controller, overriding preferredStatusBarStyle :
-(UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
In addition, you can set the status bar style using the UIApplication statusBarStyle method. To do this, insert a new key called "View the appearance of the status bar based on the controller" and set the value to "NO". 
By disabling the "Controller-based status bar view", you can set the status bar style using the following code.
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
UINavigationBar , change the hue color of the UINavigationBar property as shown below
[[UINavigationBar appearance] setBarTintColor:[UIColor blueColor]];
byJeevan
source share