码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-04-01 17:49:15      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

这是导航栏的问题,将下边的代码放在  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 去掉导航栏(UINavigationBar)下方的横线

标签:

原文地址:http://www.cnblogs.com/piaojin/p/5345555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!