我有pageViewcontroller,它会自动从一个页面滑动到另一个页面。
当我点击特定页面时,我想转到另一个ViewController, 我看过许多应用程序在幻灯片中显示优惠,当我们点击幻灯片索引时,它会转到特定页面。
答案 0 :(得分:2)
只需在您的UIPageControl上添加:
pageControl.addTarget(self, action: #selector(pageChanged(_:)), for: .valueChanged)
然后赶上事件:
@objc func pageChanged(_ sender: UIPageControl) {
// Go to the appropriate controller
let controllerToDisplay = UIViewController() // pick the appropriate controller here
self.setViewControllers([controllerToDisplay], direction: .forward, animated: true, completion: nil)
}