弄了一年多的微信小程序,终于又回到iOS了,废话不多说,进入正题:
&更改导航栏背景颜色
首先来说更改导航栏颜色的方式有很多,比如自定义一个导航栏,但是这样就会破坏掉系统导航栏的功能(比如侧滑返回)而且也失去了系统导航栏的平滑过渡。
相对于自定义,我们也可以更改系统的导航栏颜色,比较简单的方式是,直接设置导航栏的tintColor 如下:
self.navigationController.navigationBar.barTintColor = [UIColor redColor];
这种方法可以很大程度上实现导航栏颜色渲染,但是美中不足的是,这样渲染出来的颜色和实际颜色会有一丁点的色差,若果对设计的要求不高,这个方法完全可以行得通。
接下来我们来介绍一个略微麻烦的方式,虽然麻烦,但是为了程序员通有的强迫症,这点麻烦还是值得的
其原理很简单,首先找到导航栏的底视图,并在该视图上插入一层我们自定义的视图(也许有人会问都找到底视图了,为什么还要插入自己的视图,直接用底视图不就得了,这个问题很好回答,楼主任性)
对于这种麻烦而又常用的东西,我们首先会想到把他单独拿出来写到一个类里,这里也不例外,我们先创建一个 UINavigationBar 的分类,姑且叫做(handle)然后在里面添加一个方法 如下:
#import <UIKit/UIKit.h>
@interface UINavigationBar (handle)
/**
更改导航栏颜色和图片
@param color 颜色
@param barImage 图片
*/
- (void)navBarBackGroundColor:(UIColor *_Nullable)color image:(UIImage *_Nullable)barImage;
@end
看到这个方法名,你一定已经知道它的作用了,当然光有名字肯定不行,那我们就去.m文件里实现它,首先在.m文件中导入runtime头文件添加该分类的匿名类别 如下:
#import "UINavigationBar+handle.h"
#import <objc/runtime.h>
@interface UINavigationBar()
@property (nonatomic, strong) UIImage *backClearImage;
@property (nonatomic, strong) UIImage *lineClearImage;
@property (nonatomic, strong) MyNavLayer *myLayer; //自定义插入层,自定义操作都要在这一层上进行
@implementation UINavigationBar (handle)
- (void)navBarBackGroundColor:(UIColor *)color image:(UIImage *)barImage {
...
}
@end
由于是在分类中,由于分类中无法建立变量,所以所用到的属性需要runtime 关联一下,方法去看我的demo
接下来我们来实现这个更改颜色和背景图片的方法
1,使用kvc找到navigationbar的底视图 如下:
UIView *backView = [self valueForKey:@"backgroundView"];
2,因为我们要插入自己定义的图层,所以我们要先把原来导航栏的特征去掉(这里不是去掉导航栏,而是把其透明处理),方法很简单,只需要用一个空的image去填充原来的背景 如下:透明化背景,透明化底线
//通过插入空image把背景变透明
if (!self.backClearImage) {
self.backClearImage = [[UIImage alloc]init];
[self setBackgroundImage:self.backClearImage
forBarMetrics:UIBarMetricsDefault];
self.barStyle = UIBarStyleBlackOpaque;
}
//去掉系统底线,使用自定义底线
if (!self.lineClearImage) {
self.lineClearImage = [[UIImage alloc]init];
[self setShadowImage:self.lineClearImage];
}
*题外话:说道这里我们说一下为什么楼主不用原底层视图,而是要自定义一个,首先直接在backView上进行更是不行的,该底视图的属性是无法更的,比如(backView.backGroundColor = [UIColor redColor] ;)无效,如果还想实现背景的更改,就要从这个空image入手,首先准备一个1x1的带颜色的图片(当然如果颜色不固定也可以通过drawrect画一张自定义颜色的视图然后转成image)然后用该image去填充原来的背景image就可以实现背景颜色的变换了,大家可能看出来了,这非常的不灵活,所以楼主也不是很任性,对吧。
好了,回到正题:
第三步就很简单了,前面视图已经找到了,而且也完成了元导航栏的透明处理,接下来我们只需要把自己的视图的插入到底视图上就OK了
导航栏的高度 = navigationBar的高度 + 状态栏的高度
因为是navigationBar的分类 所以navigationBar的高度:
CGFloat barHeight = self.bounds.size.height;
状态栏高度:
CGFloat statusHeight = [UIApplication sharedApplication].statusBarFrame.size.height;
完整代码如下(myLayer为自定义导航栏层,继承自calayer):
if (!self.myLayer) {
//状态栏高度
CGFloat statusHeight = [UIApplication sharedApplication].statusBarFrame.size.height;
//导航栏高度
CGFloat barHeight = self.bounds.size.height;
CGRect barBounds = self.bounds;
barBounds.size.height = statusHeight + barHeight;
self.myLayer = [[MyNavLayer alloc]initWithFrame:barBounds];
}
if (color) {
self.myLayer.backColor = color;
}
if (barImage) {
self.myLayer.backImage = barImage;
}
//通过kvc找到系统导航栏背景层,把自定义层添加到背景层
[[[self valueForKey:@"backgroundView"] layer] addSublayer:self.myLayer];
以上便是更改颜色的方法,使用时导入该分类如下:
#import "ViewController.h"
#import "UINavigationBar+handle.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"红色导航栏";
[self.navigationController.navigationBar navBarBackGroundColor:[UIColor redColor] image:nil];//颜色
}
&更改导航栏透明度
有了上面的铺垫,透明应该不在话下了,原理和改背景颜色一样,自定义视图,然后更改自定义视图的透明度
重复的东西这里就不赘述了,直接贴出更改方法和实现:
#import <UIKit/UIKit.h>
@interface UINavigationBar (handle)
/**
更改导航栏颜色和图片
@param color 颜色
@param barImage 图片
*/
- (void)navBarBackGroundColor:(UIColor *_Nullable)color image:(UIImage *_Nullable)barImage;
/**
更改透明度
@param alpha 导航栏透明度
*/
- (void)navBarAlpha:(CGFloat)alpha;
@end
方法实现:
if (!self.myLayer) {
//状态栏高度
CGFloat statusHeight = [UIApplication sharedApplication].statusBarFrame.size.height;
//导航栏高度
CGFloat barHeight = self.bounds.size.height;
CGRect barBounds = self.bounds;
barBounds.size.height = statusHeight + barHeight;
self.myLayer = [[MyNavLayer alloc]initWithFrame:barBounds];
}
self.myLayer.alpha = alpha;
//通过kvc找到系统导航栏背景层,把自定义层添加到背景层
[[[self valueForKey:@"backgroundView"] layer] addSublayer:self.myLayer];
好了,到这里就完成了,这里的代码只是原理,需要的话直接去下载,然后把分类UINavigationBar+handle放到自己的项目里就OK了
为了换一句辛苦,楼主花了一上午。
https://github.com/Xiexingda/NavBarHandle.git