Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing the UIPageViewController transition

I'd like to use an horizontal UIPageViewController for my iOS 5.0 application.

The only problem I have is that I don't want a UIPageViewControllerTransitionStylePageCurl transition. Is there a way to get a classic transition like translation for example?

Note :Even ugly hacks are accepted since it would take out a lot of my previous code

like image 472
CedricSoubrie Avatar asked Nov 03 '22 16:11

CedricSoubrie


1 Answers

Update to tell you that now there is now a new transition style for iOS 6, and it's the transition you wanted

UIPageViewControllerTransitionStyleScroll

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

like image 196
jcesarmobile Avatar answered Nov 13 '22 05:11

jcesarmobile