Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>In iOS 7, the status bar is transparent, and other bars—that is, navigation bars, tab bars, toolbars, search bars, and scope bars—are translucent. As a general rule, you want to make sure that content fills the area behind the bars in your app.</p> <p>Because the status bar is transparent, the view behind it shows through. The style of the status bar refers to the appearance of its content, which includes items such as time, battery charge, and Wi-Fi signal. Use a <code>UIStatusBarStyle</code> constant to specify whether the status bar content should be dark (<code>UIStatusBarStyleDefault</code>) or light (<code>UIStatusBarStyleLightContent</code>):</p> <p><code>UIStatusBarStyleDefault</code> displays dark content. Use when light content is behind the status bar. <code>UIStatusBarStyleLightContent</code> displays light content. Use when dark content is behind the status bar.</p> <p>In some cases, the background image for a navigation bar or a search bar can extend up behind the status bar. If there are no bars below the status bar, the content view should use the full height of the screen.</p> <p>In iOS 7, you can control the style of the status bar from an individual view controller and change it while the app runs. If you prefer to opt out of this behaviour and set the status bar style by using the <code>UIApplication statusBarStyle</code> method, add the <code>UIViewControllerBasedStatusBarAppearance</code> key to an app’s <strong>Info.plist</strong> file and give it the value <code>NO</code>.</p> <p>For more details about how to use status bar with navigation controller, please refer my answer <a href="https://stackoverflow.com/questions/18853931/ios-6-status-bar-to-ios-7/18869484#18869484">here</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload