我一直在寻找,但无法找到似乎可以解决我的具体问题的答案。在我的应用程序中,我有一个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,如下图所示,
请帮助我使用正确的代码来制作这个动画。
提前致谢。
答案 0 :(得分:0)