首页 > 移动平台 > 详细

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

时间:2016-04-01 17:47:39      阅读:202      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!