Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Controlling the Status Bar in iOS 7 Hybrid Apps
In iOS 7 you can choose to show or hide the status bar, and you can control whether it overlays the web view. You use the Cordova status bar plug-in to configure these settings. By default, the status bar is shown and overlays the web view in Salesforce Mobile SDK 2.3 and later.
1<key>UIStatusBarHidden</key>
2<true/>
3<key>UIViewControllerBasedStatusBarAppearance</key>
4<false/>For an example of a hidden status bar, see the AccountEditor sample app.
1cordova plugin add org.apache.cordova.statusbar