Sebastian
Sebastian

Reputation: 905

UIPageViewController with custom transition Style

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:

  1. UIPageViewControllerTransitionStylePageCurl
  2. 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

Answers (1)

Antonio MG
Antonio MG

Reputation: 20410

You'll have to stick with any of those transitions, or just create your view and create your own animation.

Upvotes: 1

Related Questions