views:

416

answers:

2

Is there no way to make the status bar translucent for the iPad. I get this error when trying to do this: UIStatusBarStyleBlackTranslucent is not available on this device.

+2  A: 

The iPad doesn't support the translucent status bar.

On iPad devices, the UIStatusBarStyleDefault and UIStatusBarStyleBlackTranslucent styles default to the UIStatusBarStyleBlackOpaque appearance.

It's probably Apple considers the screen is so big that giving 20px (2 ~ 3% of screen size) to the status bar doesn't really matter.

KennyTM
It doesn't really matter I agree, but would be cool if we cold use it if we wanted to
marchinram
A: 

Bizarre. If you write an HTML app with the following meta tag and add it to your home screen, the bar actually IS translucent:

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

Martin Kool
What iOS version are you on, maybe it has been added since I asked my question?
marchinram
iOS 3.2.1 (7B405)
Martin Kool