When iOS10 Navigationcontroller push, navigationbar flashed a white stripe.

Source: Internet
Author: User

There's a 1px line underneath the Navigationbar to hide this line so that Navigationbar and the following are connected.


Color
    self.navigationController.navigationBar.barTintColor = [Thememanager navicolor];
    Clear Shadow
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    Hide I px buttom line
    [Self.navigationController.navigationBar setbackgroundimage:[uiimage new]
                                                 Forbarposition:uibarpositionany
                                                     Barmetrics:uibarmetricsdefault];
    
    Self.navigationController.navigationBar.translucent = NO;

Then it went to iOS 10. Or the original app, or the original code, push the time navigationbar flashing white stripes.

The question is this sentence

[Self.navigationcontroller.navigationbarsetbackgroundimage:[uiimagenew]

Forbarposition:uibarpositionany

Barmetrics:uibarmetricsdefault];


Change it like this.

Color
    self.navigationController.navigationBar.barTintColor = [Thememanager navicolor];
    Clear Shadow
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    if (![ Nsprocessinfo.processinfo isoperatingsystematleastversion: (nsoperatingsystemversion) {9,4,0}]) {
        //Hide I px Buttom line
        [Self.navigationController.navigationBar setbackgroundimage:[uiimage new]
                                                     forbarposition: Uibarpositionany
                                                         Barmetrics:uibarmetricsdefault];
    }
    
    Self.navigationController.navigationBar.translucent = NO;



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.