IOS changes the color of the top battery bar in real time

Source: Internet
Author: User

IOS changes the color of the top battery bar in real time

The statusBarStyle (battery bar) color on the top is modified in real time based on the offset on the sliding interface. Directly run the Code:

First, set the View controller-based status bar appearance parameter in the info. plist file to NO.

Set the style in the proxy method of scrollView.

 

-(Void) scrollViewDidScroll :( UIScrollView *) scrollView

 

{

_ Content = scrollView. contentOffset. y;

_ Navview. alpha = _ content/200;

If (_ navview. alpha> 0 ){

Return [[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleDefault animated: NO]; // black

}

Return [[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleLightContent animated: NO]; // white

}


Note that if you do not need to change the battery color on the previous interface or the next interface, you need to set the battery color to the original color in the previous interface and the viewWillAppear method on the next interface.

-(Void) viewWillAppear :( BOOL) animated

{

[Super viewWillAppear: animated];

// Set the battery to black.

[[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleDefault animated: NO];

}





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.