我正在通过此代码翻看视图
(void)displayView:(UIViewController *)newView {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:window cache:YES];
[window addSubview:newView.view];
[UIView commitAnimations];
}
这很好,但我对切换视图中的三维效果感兴趣所以我该怎么做?
答案 0 :(得分:1)
请看看'CATransform3D'。非常容易使用,类似于翻转动画过渡。
OR
http://forums.macrumors.com/showthread.php?t=477617
http://www.iphonedevsdk.com/forum/iphone-sdk-tutorials/21964-3d-cube-view-transition-iphone.html