UINavigationController是导航控制容器,展示层级结构。
例如:“设置” 这个app
【常规的UI,项目框架搭建方式:TNV (UITabBarController -> NavigationController -> ViewController) 】
继承关系:
UINavigationController -> UIViewcontroller -> UIResponder -> NSObject
包含:
1、界面顶部的UINavigationBar(导航栏) 包含 UINavigationItem,上面的返回按钮、标题都用UINavigationItem来设置
2、界面底部的UIToolbar(工具栏) 默认隐藏
3、界面中间部分的view :添加的UIViewController
管理方式:
以栈的形式管理视图控制器,只能显示处于栈顶的视图控制器。
当在UINavigationController的层级结构中来回切换时, UINavigationBar和UIToolbar的内容会随着发生变化, 但是其本身并不会发生变化, 唯一发生变化的就是位于界面中间部分管理UIViewController的view
一个导航控制器管理多个视图控制器,一个导航控制器只有一个UINavigationBar,被管理的多个视图控制器共享这一个UINavigationBar,只要一个视图控制器改变了UINavigationBar的属性则影响是全局的。每个视图控制器都会有属于自己的UINavigationItem,系统会以懒加载的方式创建一个UINavigationItem显示在UINavigationBar中,改变UINavigationItem只会在当前控制器起作用,不会影响其它控制器。
UINavigationBar(导航栏):
UINavgationBar也可以单独使用,添加至任何的UIView中。
属性:
barStyle
translucent
tintColor // 左右按钮文字颜色
barTintColor //导航栏 背景颜色
shadowImage
titleTextAttributes
backIndicatorImage
backIndicatorTransitionMaskImage//和上面的同时设置生效
方法:
//导航栏标题字体颜色
[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:19],NSForegroundColorAttributeName:[UIColor whiteColor]}];
UINavigationItem
属性:
title
titleView
prompt //提示文字
backBarButtonItem
leftBarButtonItem
leftBarButtonItems
rightBarButtonItem
rightBarButtonItems
hidesBackButton
leftItemsSupplementBackButton //左按钮和返回按钮共同存在
方法:
- (void)setLeftBarButtonItem:(nullable UIBarButtonItem *)item animated:(BOOL)animated;
- (void)setRightBarButtonItem:(nullable UIBarButtonItem *)item animated:(BOOL)animated;
- (void)setLeftBarButtonItems:(nullable NSArray *)items animated:(BOOL)animated
- (void)setRightBarButtonItems:(nullable NSArray *)items animated:(BOOL)animated
UIBarButtonItem
UIBarButtonItem是UINavigationItem或者Toolbar具体的一个按钮。
//通过设置UIBarButtonItem来设置UINavigationItem 的leftBarButtonItem rightBarButtonItem
设置UINavigationItem 是通过UIViewController的属性navigationItem来设置的。
而设置UINavigationBar 是通过UINavigationController的属性navigationBar来设置的。
UINavigationController
属性
topViewController
visibleViewController
viewControllers
navigationBarHidden
方法
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController;
中间view的层级切换:
//使用push方法将某个控制器压入栈
- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated;
- (void)showViewController:(UIViewController *)vc sender:(nullable id)sender
//使用pop方法移除栈顶控制器
- (UIViewController *)popViewControllerAnimated:(BOOL)animated;
- (NSArray *)popToViewController:VC_A animated:(BOOL)animated;
-(NSArray *)popToRootViewControllerAnimated:(BOOL)animated;
- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated;
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated;
总结:
UINavigationController是UINavigationBar的delegate, 其负责响应该UINavigationBarDelegate的代理方法, 并据此更新位于界面中间部分的UIViewController的视图
UINavigationBar 隐藏 显示:
//viewWillAppear 和 viewWillDisappear 中 分别
[self.navigationController setNavigationBarHidden:YES animated:YES];
[self.navigationController setNavigationBarHidden:NO animated:YES];
侧滑返回
@property(nonatomic, readonly) UIGestureRecognizer *interactivePopGestureRecognizer;
//全屏范围内滑动返回
参考:
https://www.jianshu.com/p/b2ae4d211499
https://www.jianshu.com/p/319cbc53f0ba
https://www.cnblogs.com/wujy/p/5829039.html
https://www.jianshu.com/p/f2598a8a816d //讲解清楚