How to set the Transparent statusbar in iphone?

You can only hide the status bar using Status bar is initially hidden property in your info.plist.

Max:I want to set the statusbar as transparent ..Thank you – kanmani Feb 16 at 13:17 yes, I know. But it is only possible to hide it or make UIStatusBarStyleBlackTranslucent – Max Feb 16 at 13:22 @max:if i'm giving like this ,CODE: UIApplication sharedApplication setStatusBarStyle:UIStatusBarStyleBlackTranslucent; means it makes the statusbar as transparent ah? – kanmani Feb 16 at 13:26 Nope.

I makes it translucent (alpha = 0.5). Transparent has alpha = 0.0 – Max Feb 16 at 13:29 @max:how can I specify the alpha value 0.0 for make statusbar transparent. – kanmani Feb 16 at 13:33.

The best way of doing this is with info.plist. Have a look at Apple's UIKit pList keys, specifically UIStatusBarStyle (and the value UIStatusBarStyleBlackTranslucent) for making it translucent, or the UIStatusBardden key (for hiding it totally).

It's not possible to make the status bar transparent. There are only 3 possible styles (gray, black and black translucent) you can set and you cannot get the bar's UIView. However if you have static content behind it (i.e.

A fixed part of your UI that you can edit) you can set the status bar to black translucent and add a 50% white layer just behind the bar. This makes the bar appear to be transparent. Here's an example of what I mean.

The best solution for this problem is to set self. WantsFullScreenLayout = YES; in your view controller and UIApplication sharedApplication setStatusBarStyle:UIStatusBarStyleBlackTranslucent; for your status bar.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions