在 PageViewController 导航不工作

In PageViewController navigation not working

我有 3 种类型的 VC,第一种 Vc,第二种 VC 是 PageViewController,有 3 页(我在正常情况下添加了 PageController ViewController 这里),第三个是 FinalViewController.

第一个 VC 有按钮,当我单击它将移动到第二个 VC,即 PageViewController(它有 3 页 [3 ViewConrollers] 工作正常)。

PageViewController 中,首先加载后 VC,当我点击我想要完全导航 FinalViewController 时,它有 视图 和手势。

这里 navigation 不工作。

我的第一个 VC 代码

     override func viewWillAppear(_ animated: Bool) {
        self.navigationController?.navigationBar.isHidden = true
    }

    override func viewWillDisappear(_ animated: Bool) {
        self.navigationController?.navigationBar.isHidden = false
    }

    @IBAction func btn(_ sender: Any) {

        let storyboard = self.storyboard?.instantiateViewController(withIdentifier: "NVC")
        self.navigationController?.pushViewController(storyboard!, animated: true)
    }

My PageViewController code

    import UIKit

    class NewViewController: UIViewController, UIPageViewControllerDataSource, UIPageViewControllerDelegate {

    @IBOutlet weak var pagerController: UIPageControl!
    @IBOutlet weak var pageControllerView: UIView!

    // The pages it contains
    var pages =  [UIViewController]()

    // The UIPageViewController
    var pageContainer: UIPageViewController!
    // Track the current index
    var currentIndex: Int?
    private var pendingIndex: Int?

    override func viewDidLoad() {
        super.viewDidLoad()

        // Setup the pages
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        let page1 = storyboard.instantiateViewController(withIdentifier: "ViewController") as! ViewController
        let page2: UIViewController! = storyboard.instantiateViewController(withIdentifier: "SecondViewController")
        let page3: UIViewController! = storyboard.instantiateViewController(withIdentifier: "ThirdViewController")
        pages.append(page1)
        pages.append(page2)
        pages.append(page3)

        page1.variable = "This is strig..."

        // Create the page container
        pageContainer = UIPageViewController(transitionStyle: .scroll, navigationOrientation: .horizontal, options: nil)
        pageContainer.delegate = self
        pageContainer.dataSource = self
        pageContainer.setViewControllers([page1], direction: UIPageViewController.NavigationDirection.forward, animated: false, completion: nil)

        // Add it to the view
        pageControllerView.addSubview(pageContainer.view)

        // Configure our custom pageControl
        view.bringSubviewToFront(pagerController)
        pagerController.numberOfPages = pages.count
        pagerController.currentPage = 0


    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


    // MARK: - UIPageViewController delegates

    func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
        let currentIndex = pages.firstIndex(of:viewController)!
        if currentIndex == 0 {
            return nil
        }
        let previousIndex = abs((currentIndex - 1) % pages.count)
        return pages[previousIndex]
    }

    func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
        let currentIndex = pages.firstIndex(of:viewController)!
        if currentIndex == pages.count-1 {
            return nil
        }
        let nextIndex = abs((currentIndex + 1) % pages.count)
        return pages[nextIndex]
    }


    func pageViewController(_ pageViewController: UIPageViewController, willTransitionTo pendingViewControllers: [UIViewController]) {
        pendingIndex = pages.firstIndex(of:pendingViewControllers.first!)
    }

    func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
        if completed {
            currentIndex = pendingIndex
            if let index = currentIndex {
                pagerController.currentPage = index
            }
        }
    }

    }

My `ViewConroller` code means which is loading in `PageViewController` 

    import UIKit

    class ViewController: UIViewController {

    var variable = String()
    @IBOutlet weak var subView: UIView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.

        //Add gesture to incoming call view
        let incomingCallsViewTap = UITapGestureRecognizer(target: self, action: #selector(incomingCallsViewTapFunction(_:)))
        self.subView!.addGestureRecognizer(incomingCallsViewTap)


    }

    // Tap gestrure selector fuction
    @objc func incomingCallsViewTapFunction(_ sender: UITapGestureRecognizer) {
        let clvc = self.storyboard?.instantiateViewController(withIdentifier: "FVC") as! FinalViewController
        self.navigationController?.pushViewController(clvc, animated: false)
    }



    @IBAction func btn(_ sender: Any) {

        print("ViewController one")

        print(variable)
    }

    }

navigationViewController 为零,所以我必须执行以下操作:

(UIApplication.shared.keyWindow?.rootViewController as? UINavigationController)?.pushViewController(clvc, animated: true)


// Tap gestrure selector fuction
@objc func incomingCallsViewTapFunction(_ sender: UITapGestureRecognizer) {
    let clvc = self.storyboard?.instantiateViewController(withIdentifier: "FVC") as! FinalViewController
//        self.navigationController?.pushViewController(clvc, animated: false)

    (UIApplication.shared.keyWindow?.rootViewController as? UINavigationController)?.pushViewController(clvc, animated: true)

}