Pretty simple one that I just seemingly can't find the answer to.
How can i change the iPhone statusbar (thin bar right at the top with the reception/batter etc) from default grey to black in my PhoneGap iPhone application?
Thanks, Glen
A PhoneGap-iPhone application is just a regular Xcode iPhone project.
Add UIStatusBarStyle
:UIStatusBarStyleBlackOpaque
to your Info.plist
.
MyApp.xcodeproj
)Info.plist
file (e.g. MyApp-Info.plist
)Status bar style
Opaque black style
If you are viewing the RAW Key/Value pairs, then use:
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleBlackOpaque</string>
You can right-click in MyApp-Info.plist to toggle the RAW Key/Value pairs.
just set
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackOpaque;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With