Note: I don't want to change the status bar color or text color to white or black. I know how to do that.
I want to change status bar text color to green.
Black
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
White
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
However I would like to know can I set some other color? Really I want this because all my app design goes ugly with white and black ;(
I know this is not possible, but still asking here as someone might know if there is way.
Now, if there is no way, what I am planning is to create custom view and put all what I see in status bar to my view as below, but black to green color.
Is there any way where I can gather all the information of status bar?
I will manage to refresh the view based on notification, but I want to find the way where we can gather all contents of status bar.
And most important, is it allowed?
What I wanted is as below.