iOS 导航栏 - UINavigationBar

iOS开发中,UINavigationController是一种常用的视图控制器,主要用来控制UI界面流程跳转。
在UINavigationController使用过程中,经常会遇到导航栏(UINavigationBar)显示/隐藏、透明/不透明,以及透明渐变的问题。

本文主要介绍导航栏(UINavigationBar)显示/隐藏、透明/不透明,以及透明渐变的问题。

以下是我整理的与导航栏相关的控件组织图:


UINavigationController

通过上图可以看出:
1、UINavigationController继承于UIViewController;
2、UINavigationController包含viewControllers(UIViewController数组)、UINavigationBar、UIToolbar;
3、UINavigationBar管理items(UINavigationItem数组);
4、UIViewController包含UINavigationItem。

下图能更好的理解UINavigationController组织结构


UINavigationController

隐藏与显示

方法一:
NS_CLASS_AVAILABLE_IOS(2_0) @interface UINavigationController : UIViewController

@property(nonatomic,getter=isNavigationBarHidden) BOOL navigationBarHidden;
- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated; 
@property(nonatomic,readonly) UINavigationBar *navigationBar;

@end

使用UINavigationController的navigationBarHidden属性获取隐藏导航方法。常用于以下方法中

- (void)viewWillAppear:(BOOL)animated; 
- (void)viewDidAppear:(BOOL)animated; 
- (void)viewWillDisappear:(BOOL)animated; 
- (void)viewDidDisappear:(BOOL)animated;

当然还有实现UINavigationControllerDelegate,在代理方法中通过判断showViewController类型,来控制显示。

// Called when the navigation controller shows a new top view controller via a push, pop or setting of the view controller stack.
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated;

这种隐藏方式在滑动过程中,有些iOS版本会出现过渡不自然现象。(现不建议使用)
效果如下:


导航栏隐藏与显示.gif
方法二:

使用UINavigationController+FDFullscreenPopGesture
该类重写了UINavigationController的+ (void)load;方法。
具体可参照以下代码:

+ (void)load {
    // Inject "-pushViewController:animated:"
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        Class class = [self class];
        
        SEL originalSelector = @selector(pushViewController:animated:);
        SEL swizzledSelector = @selector(fd_pushViewController:animated:);
        
        Method originalMethod = class_getInstanceMethod(class, originalSelector);
        Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
        
        BOOL success = class_addMethod(class, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod));
        if (success) {
            class_replaceMethod(class, swizzledSelector, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod));
        } else {
            method_exchangeImplementations(originalMethod, swizzledMethod);
        }
    });
}

运用了runtime技术,在执行-(void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated时,执行- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated;,以此来解决滑动过程中,过渡不自然问题。

该方法有一个不算缺陷的缺陷,就是一个工程只能只能置换一次。
如果你在一个SDK中用到了该技术(修改类别名),并且另一个工程引入了该SDK,并且也使用了该技术。会造成滑动不自然。当然,你可以把该技术单独提出来,供SDK和工程共同引用,这样就可以解决问题了。

透明与不透明,以及透明渐变

方法一:
NS_CLASS_AVAILABLE_IOS(2_0) @interface UINavigationBar : UIView <NSCoding, UIBarPositioning> 

/*
 New behavior on iOS 7.
 Default is YES.
 You may force an opaque background by setting the property to NO.
 If the navigation bar has a custom background image, the default is inferred 
 from the alpha values of the image—YES if it has any pixel with alpha < 1.0
 If you send setTranslucent:YES to a bar with an opaque custom background image
 it will apply a system opacity less than 1.0 to the image.
 If you send setTranslucent:NO to a bar with a translucent custom background image
 it will provide an opaque background for the image using the bar's barTintColor if defined, or black
 for UIBarStyleBlack or white for UIBarStyleDefault if barTintColor is nil.
 */
// Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent
@property(nonatomic,assign,getter=isTranslucent) BOOL translucent NS_AVAILABLE_IOS(3_0) UI_APPEARANCE_SELECTOR; 

@end
方法二:

通过文章刚开始介绍的UINavigationController组织图,可发现UINavigationController中只包含一个UINavigationBar。那么我们可以从UINavigationBar直接入手。

self.edgesForExtendedLayout = UIRectEdgeTop;
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
if ([self.navigationController.navigationBar respondsToSelector:@selector(shadowImage)]) {
   [self.navigationController.navigationBar setShadowImage:[UIImage new]];
}
self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];
self.navigationController.navigationBar.alpha = 0.0;
self.navigationController.navigationBar.backItem.hidesBackButton = YES;
self.navigationController.navigationItem.hidesBackButton = YES;
self.navigationItem.hidesBackButton = YES;

该方法是直接控制UINavigationBar的背景图片、阴影图片、背景色、navigationItem等,也能达到类似- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated;效果。
常用于以下方法中

- (void)viewWillAppear:(BOOL)animated; 
- (void)viewDidAppear:(BOOL)animated; 
- (void)viewWillDisappear:(BOOL)animated; 
- (void)viewDidDisappear:(BOOL)animated;

当然还有实现UINavigationControllerDelegate,在代理方法中通过判断showViewController类型,来控制显示。

// Called when the navigation controller shows a new top view controller via a push, pop or setting of the view controller stack.
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated;

这种方法好处是直接控制UINavigationBar,不好的地方是调用的方法过多,还要考虑viewControllers中的navigationItem。

透明渐变

效果图


透明渐变

主要实现思路代码

#pragma mark - UIScrollViewDelegate

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    CGFloat offset = scrollView.contentOffset.y;
    [self setLifeNav:offset];
}
#pragma mark - Nav Bar

- (CGFloat)navBarColorAlpha:(CGFloat)offsetY {
    CGFloat alpha;
    CGFloat height = 200.0;
    if (offsetY <= 0) {
        alpha = 0.0;
    } else if (offsetY > 0 && offsetY < height) {
        alpha = offsetY / height;
    } else {
        alpha = 1.0;
    }
    return alpha;
}

/// 使用颜色填充图片
- (UIImage *)imageWithColor:(UIColor *)color
{
    // 描述矩形
    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    // 开启位图上下文
    UIGraphicsBeginImageContext(rect.size);
    // 获取位图上下文
    CGContextRef context = UIGraphicsGetCurrentContext();
    // 使用color演示填充上下文
    CGContextSetFillColorWithColor(context, [color CGColor]);
    // 渲染上下文
    CGContextFillRect(context, rect);
    // 从上下文中获取图片
    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
    // 结束上下文
    UIGraphicsEndImageContext();
    return theImage;
}


- (void)setLifeNav:(CGFloat)offset {
    CGFloat maxHeight;
    if (@available(iOS 11.0, *)) {
        UIEdgeInsets insets = [[UIApplication sharedApplication] keyWindow].safeAreaInsets;
        maxHeight = 200.0 - MAX(insets.top, 20.0) - 44.0;
    }else {
        maxHeight = 200.0 - 64.0;
    }
    if (offset < maxHeight) {
        if ([self.window.rootViewController isKindOfClass:[UITabBarController class]]) {
            UITabBarController *tabC = (UITabBarController *)self.window.rootViewController;
            for (UINavigationController *navC in tabC.viewControllers) {
                if ([navC.topViewController isKindOfClass:[LifeViewController class]]) {
                    CGFloat alpha = [self navBarColorAlpha:offset];
                    UIImage *image = [self imageWithColor:[UIColor colorWithRed:60/255.0 green:131/255.0 blue:255/255.0 alpha:alpha]];
                    [navC.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
                    break;
                }
            }
        }
    }else {
        if ([self.window.rootViewController isKindOfClass:[UITabBarController class]]) {
            UITabBarController *tabC = (UITabBarController *)self.window.rootViewController;
            for (UINavigationController *navC in tabC.viewControllers) {
                if ([navC.topViewController isKindOfClass:[LifeViewController class]]) {
                    UIImage *image = [self imageWithColor:[UIColor colorWithRed:60/255.0 green:131/255.0 blue:255/255.0 alpha:1.0]];
                    [navC.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
                    break;
                }
            }
        }
    }
}

结束语

当UINavigationBar完全透明时,也可达到隐藏导航栏效果。

结尾附上Demo地址(GitHub)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容