首页 > 解决方案 > 在 PageViewController 导航不起作用

问题描述

我有 3 种类型的 VC,第一种 VC,第 2 种 VCPageViewController有 3 页(我在这里添加PageController正常ViewController),第三种是FinalViewController.

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

在加载第一个 VC 后,当我点击我想要完全导航时PageViewController,它会显示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)
    }

    }

标签: iosswiftcocoa-touchuinavigationcontrolleruipageviewcontroller

解决方案


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)

}

推荐阅读