【发布时间】:2015-01-22 20:38:11
【问题描述】:
我需要左下角的页面卷曲动画。
当我在下面编写代码页时,将从右下角开始制作动画。但是,如果我需要从左下角获得相同的效果,我该怎么做。
谢谢!
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationDelegate:self];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:
UIViewAnimationTransitionCurlUp forView:_imagePreviewView cache:NO];
[UIView commitAnimations];
【问题讨论】:
标签: ios objective-c uianimation