我想用我的 UIView 从左(或右)动画制作幻灯片,就像您在通过左右滑动浏览完整照片时在 Photos.app 中完成的那样。
我知道以下基本动画交易代码。
[UIView beginAnimations:@"ThisAnimation" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
[UIView commitAnimations];
是否可以使用 setAnimationTransaction 从左(或右)动画滑动?如果没有,我该怎么做?