Swift iOS: how to trigger next page using buttons

后端 未结 6 1164
醉话见心
醉话见心 2020-12-15 11:56

I have a QuizViewController which extends UIViewController, UIPageControllerDelegate, and a UIPageView

6条回答
  •  星月不相逢
    2020-12-15 12:07

    Swift 4.2 Very easy way to move on your desire View Controller

    //MARK:- Programatically move to Next Page or Previous Page
    //Your Desire index in Your UIViewController Array
        let arr : [UIViewController] = [arrvc[1]] 
        pagecontroller.setViewControllers(arr,
                                        direction: UIPageViewController.NavigationDirection.reverse,
                                        animated: true,
                                        completion: nil)
    

提交回复
热议问题