2012-12-19 74 views

回答

0

您可以有更多的信息here。 這是一個名爲UIPageViewController的原生ViewController。網上有很多教程。

0

,如果你只想要的動畫效果,然後不準確,但類似的效果,你可以得到:

[UIView beginAnimations:@"animationCurl" context:nil]; 
    [UIView setAnimationDuration: 0.5]; 
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:NO]; 
    [UIView commitAnimations]; 

否則,您必須需要採取 - 包含UIPageViewController

  • 基於頁面的應用

    據我所知

相關問題