Reputation: 905
I am building an application for iOS which contains a UIPageViewController
, displaying a couple of content pages.
By default, there are two kinds of transitions:
UIPageViewControllerTransitionStylePageCurl
UIPageViewControllerTransitionStyleScroll
They are pretty cool, but I would like to provide a custom Transition Animation. Is it even possible to "plug in" custom animations? Or is one required to implement a very own Page View Controller?
Upvotes: 4
Views: 3020
Reputation: 20410
You'll have to stick with any of those transitions, or just create your view and create your own animation.
Upvotes: 1