A detailed study of hidden status bar under IOS7

Source: Internet
Author: User

Info.plist file, theview controller-based status bar appearance key is set to Yes, the view controller pair status The bar's setting priority is higher than the application setting. If no is set to application, the Prefersstatusbarhidden method of view controller is invalid and is not called at all.

1. View controller-based status bar appearance set to Yes.

When the view Controller has a priority setting of status bar higher than the application setting, the status bar is hidden in the following way.

1.1 Call Setneedsstatusbarappearanceupdate in the View controller to update the display of the status bar
  1 -(void    2  {  3   [Super viewdidappear:animated];    5  if
       ([self respondstoselector: @selector (setneedsstatusbarappearanceupdate)]) {   6   [self Prefersstatusbarhidden];  [self performselector: @selector (setneedsst Atusbarappearanceupdate)];   "   9  }    

1.2 The implementation of the Prefersstatusbarhidden that covers the view controller, returns YES.
1 - (BOOL) Prefersstatusbarhidden2{3     return  YES; 4 }

2. View controller-based status bar appearance set to No

At this point the application has the highest priority and hides the status bar in the following way:

1 [[uiapplication sharedapplication] Setstatusbarhidden:yes Withanimation:no];

3. Conclusion
    • If view controller-based status bar appearance is set to NO,IOS6 and iOS7, the status bar is hidden in the following ways.
1 [[uiapplication sharedapplication] Setstatusbarhidden:yes Withanimation:no];

    • If view controller-based status bar appearance is set to Yes, you need to determine whether the current is iOS6 or iOS7.

If it is iOS6, it is also hidden through sharedapplication.

If it is iOS7, hide the status bar in a setneedsstatusbarappearanceupdate plus prefersstatusbarhidden way.

4. Take the settings in the View controller-based status bar appearance in Info.plist
1 nsnumber *isvcbasedstatusbarappearancenum = [[NSBundle mainbundle]objectforinfodictionarykey:@ " uiviewcontrollerbasedstatusbarappearance " ]; 2 if (isvcbasedstatusbarappearancenum) {  3     _isvcbasedstatusbarappearance =  Isvcbasedstatusbarappearancenum.boolvalue; 4 Else {  5     // default 6 }

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.