IOS 去掉导航栏(UINavigationBar)下方的横线

下图是要最终实现的效果:

IOS 去掉导航栏(UINavigationBar)下方的横线_第1张图片

但是,开始时会出现下图中箭头指向的横线效果:

IOS 去掉导航栏(UINavigationBar)下方的横线_第2张图片

这是导航栏的问题,将下边的代码放在  viewWillAppear  方法中就可以实现效果:


- (void)viewWillAppear:(BOOL)animated{

    

    // Called when the view is about to made visible. Default does nothing    

    [super viewWillAppear:animated];

  

    //去除导航栏下方的横线

    [navigationBar setBackgroundImage:[UIImage imageWithColor:[self colorFromHexRGB:@"33cccc"]]

                       forBarPosition:UIBarPositionAny

                           barMetrics:UIBarMetricsDefault];

    [navigationBar setShadowImage:[UIImage new]];

    

}

你可能感兴趣的:(iOS基础)