开发者

Phonegap - How do i make the statusbar black?

开发者 https://www.devze.com 2023-01-23 02:31 出处:网络
Pretty si开发者_StackOverflowmple 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 gre

Pretty si开发者_StackOverflowmple 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.

  1. Open your Xcode project (e.g. MyApp.xcodeproj)
  2. Open your Info.plist file (e.g. MyApp-Info.plist)
  3. Add a new row:
    • Key: Status bar style
    • Value: 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;


When a PhoneGap Project is created, there is an <ApplicationName>AppDelegate.m file created in the project.

Inside of the (void)viewDidLoad method, you can make modifications to the view however you choose.

0

精彩评论

暂无评论...
验证码 换一张
取 消