动画中的uiview透视图iOS

问题描述:

我一直在四处搜寻,但无法找到似乎解决了我的特定问题的答案。在我的应用程序中,我有一个书本视图,并使用UIViewAnimationTransitionFlipFromRight为其制作动画。动画中的uiview透视图iOS

我的代码,

[UIView beginAnimations:@"View Flip" context:nil]; 
[UIView setAnimationDuration:3.25]; 
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; 
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:YES]; 


[self.navigationController pushViewController:setingController animated:NO]; 
[UIView commitAnimations]; 

,但我需要一个3D动画。

我需要透视图显示的UIView一样显示在下面的图像,

enter image description here

请帮我正确的代码,这样做动画。

在此先感谢。

我找到了这种类型的动画的解决方案。 请检查该链接

https://github.com/GlennChiu/GC3DFlipTransitionStyleSegue

这我们可以通过添加豆荚。