1-1导航栏的使用

一 、UINavigationController的介绍
UINavigationController管理堆栈视图控制器和一个导航栏。它执行水平视图转换为推动的导航栏和弹出视图,同时保持同步。

二 、 UINavigationController 的方法和属性的介绍
1、 初始化

初始化

1、init()

2、init(coder: NSCoder)  // 通过存储的数据来创建

3、init(nibName: <#T##String?#>, bundle: <#T##Bundle?#>) // xib 的创建

4、 init(rootViewController: UIViewController) // 通过一个 UIViewController 来创建。

5、init(navigationBarClass: <#T##AnyClass?#>, toolbarClass: <#T##AnyClass?#>) // 通过一个类创建对象。

2 、导航控制控制器的跳转
1> 添加导航控制器

导航控制器的创建

let RootNavigatonVc = UINavigationController.init(rootViewController: RootViewController.init())
RootNavigatonVc.delegate = self;

设置主窗口

window?.rootViewController = RootNavigatonVc

2>设置跳转的按钮

let NwBtn = UIButton.init(type: .custom)
NwBtn.frame = CGRect.init(x: 20, y: 120, width: UIScreen.main.bounds.width - 40, height: 60)
NwBtn.backgroundColor = UIColor.magenta
NwBtn.setTitle("导航跳转", for: .normal)
NwBtn.setTitleColor(UIColor.white, for: .normal)
NwBtn.addTarget(self, action: #selector(pushToVc), for: .touchUpInside)
self.view.addSubview(NwBtn)

按钮方法的实现(包含跳转方法)

func pushToVc() -> Void {

    控制页面跳转的方法
    
    open func pushViewController(_ viewController: UIViewController, animated: Bool)
    
   let pushVc = JumpViewController.init()
   self.navigationController?.pushViewController(pushVc, animated: true)
}

3> 导航的返回方法

导航的返回上一个控制器

self.navigationController?.popViewController(animated: true)

导航返回根导航控制器

 self.navigationController?.popToRootViewController(animated: true)

可以跳转到堆栈内的任意一个控制器

let NavVcs = self.navigationController?.childViewControllers;

self.navigationController?.popToViewController((NavVcs?[1])!, animated: true)

3、 导航头部和标题的修改和定义

设置导航的标题

self.navigationItem.title = "导航跳转的标题"

修改导航标题的样式

self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName:UIColor.red,NSFontAttributeName:UIFont.italicSystemFont(ofSize: 20)]

导航左边按钮

let leftBarButtonItem = UIBarButtonItem.init(image: UIImage.init(named: "1"), style: .plain, target: self, action: #selector(leftBarButtonItemMethod(_:)))

设置按钮

第一种:

self.navigationItem.setLeftBarButton(item: UIBarButtonItem?, animated: Bool)

第二种:

self.navigationItem.leftBarButtonItem = leftBarButtonItem
self.navigationItem.leftBarButtonItem = leftBarButtonItem

右边按钮

let rightBarButtonItem = UIBarButtonItem.init(title: "确定", style: .plain, target: self, action: #selector(rightBarButtonItemMethod(_:)))
self.navigationItem.rightBarButtonItem = rightBarButtonItem

修改按钮文字的样式

self.navigationItem.rightBarButtonItem?.setTitleTextAttributes([NSForegroundColorAttributeName:UIColor.purple], for: .normal)

4、 获取导航栈里的控制器& 当前控制器 & 获取某个导航的顶部控制器
1> 所有的控制器的获取
// TODO: 获取当前导航栈里所有的控制器

let NavVcs = self.navigationController?.viewControllers
print(NavVcs!)

2> 当前的控制器

获取当前显示的控制器

let CurVc = self.navigationController?.visibleViewController
if CurVc==self {
    print("相同")
}

3> 获取某个导航的顶部控制器

获取某个导航栈的顶部控制器

let TopVc = self.navigationController?.topViewController
print(TopVc!)

5、 导航控制器的隐藏和显示
1> 基本的隐藏和显示

导航的显示和隐藏

self.navigationController?.isNavigationBarHidden = true
self.navigationController?.setNavigationBarHidden(false, animated: true)

2> 上下滑动控制器隐藏和显示控制器
// TODO : 这个是当控制器上下滑动,导航的显示与隐藏

self.navigationController?.hidesBarsOnSwipe = true

3> 用户点击控制器,导航才显示与隐藏
// TODO : 这个是用户点击控制器,导航才显示与隐藏

self.navigationController?.hidesBarsOnTap = true

4> 键盘的弹出会隐藏导航栏
// TODO : 这个是当键盘出现,导航会隐藏。

self.navigationController?.hidesBarsWhenKeyboardAppears = true

5> 当页面垂直紧凑的时候,会隐藏导航栏
// TODO : 当导航栏的垂直size比较紧凑的时候,导航栏自动隐藏

self.navigationController?.hidesBarsWhenVerticallyCompact = true

6、 获取上下滑动控制器隐藏导航栏的手势& 点击控制器,隐藏导航栏的手势、
1> 上下隐藏导航的手势
// TODO : 获取上下滑动隐藏导航的手势

let OnSwipeGesture = self.navigationController?.barHideOnSwipeGestureRecognizer
OnSwipeGesture?.maximumNumberOfTouches =  2

2> 点击隐藏导航的手势
// TDOD : 获取点击控制器隐藏导航的手势

let OnTapGesture = self.navigationController?.barHideOnTapGestureRecognizer
OnTapGesture?.numberOfTouchesRequired = 2

7、隐藏导航的工具栏

控制导航是否显示底部工具栏

self.navigationController?.isToolbarHidden = false
self.navigationController?.setToolbarHidden(true, animated: true)

8、设置是否滑动屏幕的左边能够返回

导航是否可以滑动屏幕左侧返回

self.navigationController?.interactivePopGestureRecognizer?.delegate = self

9 、UINavigationControllerDelegate 的代理
// 这是导航每次发生跳转都调用该函数

func navigationController(_ navigationController: UINavigationController, didShow viewController: UIViewController, animated: Bool) {
// 当前页控制器和跳转后的控制器
print(navigationController,viewController)
}

// 导航每次发生跳转前先调用的函数

func navigationController(_ navigationController: UINavigationController, willShow viewController: UIViewController, animated: Bool) {
// 当前页控制器和将要跳转后的控制器
print(navigationController,viewController)
}

// 导航支持的屏幕方向

func navigationControllerSupportedInterfaceOrientations(_ navigationController: UINavigationController) -> UIInterfaceOrientationMask {
return .all
}

// 导航首先支持的屏幕方向

func navigationControllerPreferredInterfaceOrientationForPresentation(_ navigationController: UINavigationController) -> UIInterfaceOrientation {
return .portrait
}

你可能感兴趣的:(1-1导航栏的使用)