首先,我们可以打印一下tabBar上的控件们。
我们可以看到里面有一个UIImageView 高度为0.5. 也就是那个虚线。
所以说,我们想更改tabBar的线,就对这个UIImageView操作。 代码来了。
for (UIView *lineView in self.tabBarController.tabBar.subviews)
{
if ([lineView isKindOfClass:[UIImageView class]] && lineView.bounds.size.height <= 1)
{
UIImageView *lineImage = (UIImageView *)lineView;
//更改线的颜色
//lineImage.backgroundColor = [UIColor redColor];
//隐藏
lineImage.hidden = YES;
}
}
接下来,我们继续说一下去除navigationBar的下横线: 那NavgationBar里面是不是也会有UIImageView呢 首先我们也打印一下 navigationBar 我们会发现,里面并没有所谓的UIImageView:
- (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];
}
2.利用递归拿到子控件中的那个横线子控件, 利用ViewController的生命周期,在ViewDidLoad中拿到横线line, 在ViewWillAppear中隐藏。 优点:navigationBar的半透明效果存在 缺点:代码稍微复杂一点点。
@interface ZDProfileController ()
{
UIImageView * line ;
}
-
(void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = ZDColor_White;line = nil;
line = [self navigationBarLine:self.navigationController.navigationBar];
} -
(UIImageView *)navigationBarLine:(UIView *)view{
// 符合条件返回控件
if ([view isKindOfClass:UIImageView.class] && view.bounds.size.height <= 1.0) {
return (UIImageView *)view;
}
// 递归查找
for (UIView *subview in view.subviews) {
UIImageView *imageView = [self navigationBarLine:subview];
if (imageView) {
return imageView;
}
}
return nil;
} -
(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
line.hidden = YES;
}