uiview在动画iOS上的透视图

时间:2016-12-01 11:22:29

标签: ios objective-c animation uiview uiviewanimation

我一直在寻找,但无法找到似乎可以解决我的具体问题的答案。在我的应用程序中,我有一个Book View,我将使用UIViewAnimationTransitionFlipFromRight为其设置动画。

我的代码,

[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

请帮助我使用正确的代码来制作这个动画。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我为这种类型的动画找到了一个解决方案。 请查看此链接

https://github.com/GlennChiu/GC3DFlipTransitionStyleSegue

我们可以使用Pod添加。