Change UIPageViewController Transition

I would like to use horizontal UIPageViewControllerfor my iOS 5.0 application.

The only problem I am facing is that I do not want the transition UIPageViewControllerTransitionStylePageCurl. Is there a way to get a classic transition, such as translation?

Note. Even ugly hacks are accepted, as it will output a lot of my previous code

+5
source share
2 answers

Update to let you know that a new transition style for iOS 6 has now appeared, and you need this transition

UIPageViewControllerTransitionStyleScroll

http://developer.apple.com/library/ios/ipad/#documentation/uikit/reference/UIPageViewControllerClassReferenceClassRef/UIPageViewControllerClassReference.html

+2

UIPageViewController :

 enum {
  UIPageViewControllerTransitionStylePageCurl = 0
 };
 typedef NSInteger UIPageViewControllerTransitionStyle;

, u UIPageViewController, viewController,

MPFoldTransition

0

All Articles