UIPageViewController is an iOS container view controller that manages the display one of one or more content view controllers. It provides the ability the change of the controller via swipe gestures and also supports animated transitions.
UIPageViewController
is a container view controller that manages navigation between pages of content, where each page is managed by a child view controller.
A UIPageViewController
lets the user navigate between pages of content, where each page is managed by its own view controller object. Navigation can be controlled programmatically or directly by the user using swipe gestures. When navigating from page to page, the page view controller uses the transition that you specify to animate the change.
Important
In tvOS, the UIPageViewController class provides only a way to swipe between full-screen content pages. Unlike in iOS, a user cannot interact with or move focus between items on each page.
References:
- UIPageViewController Class Reference
- Section about
UIPageViewController
in View Controller Catalog for iOS