UIPageViewController with transition user interface

I am creating an iOS app that contains a UIPageViewControllercouple of pages of content.

By default, there are two types of transitions:

  • UIPageViewControllerTransitionStylePageCurl
  • UIPageViewControllerTransitionStyleScroll

They are pretty cool, but I would like to provide a custom transition animation. Is it possible to "connect" custom animations? Or is it necessary to implement your own pageview controller?

+4
source share
1 answer

You will need to stick to any of these transitions or just create your own presentation and create your own animation.

+1
source

All Articles