Is it possible to have different color for navigation bar and status bar ? A solution other than this will help. I am looking for some default setting.
What I have tried is, assigning color to navigation bar in storyboard and then for status bar I tried this accepted answer.
But still the status bar has the same color as navigation bar.
Asked
Active
Viewed 2,321 times
0
-
Do you want to set light content to status bar? – Ashish Kakkad Jul 03 '15 at 07:13
-
I want navigation bar to be green and status bar to be white :) – Nitish Jul 03 '15 at 07:15
-
You can put UIView for status bar with height of 20 in UIStoryBoard. – iOS Dev Jul 03 '15 at 07:19
-
@PavanJangid : I already mentioned in my question, I don't want that. – Nitish Jul 03 '15 at 07:23
2 Answers
1
I've found a solution that works very well for me. You can use setBackgroundImage:forBarMetrics: method which sets the background image of the nav bar and does not affect on the status bar of your app. I hope this will help.

takatan
- 51
- 5
0
There is no way to change status bar background color from ios 7, it is always transparent.
Alternately, you can add a view with the background color you want, and add it to the top, with size as 20px.
Hope this help.

Nghia Luong
- 790
- 1
- 6
- 11