IOS 去掉导航栏(UINavigationBar)下方的横线
Posted 飘金
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS 去掉导航栏(UINavigationBar)下方的横线相关的知识,希望对你有一定的参考价值。
这是导航栏的问题,将下边的代码放在 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)下方的横线的主要内容,如果未能解决你的问题,请参考以下文章
为所有导航栏 (UINavigationBar) iOS 5.1+ 设置按钮和外观
iOS隐藏导航栏底部的线条& UINavigationBar小技巧
一段时间后,ios7 UINavigationBar 在状态栏下停止扩展
iOS 11 UINavigationBar 自定义背景总是在状态栏下扩展
UINavigationBar变成白色,在iOS 13中使用navigationItem.searchController时不会关闭