我需要左下角的页面卷曲动画。
当我在下面写代码页时,会从右下角动画。但是如果我从左下角需要相同的效果,我怎么能这样做呢。
谢谢!
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationDelegate:self];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:
UIViewAnimationTransitionCurlUp forView:_imagePreviewView cache:NO];
[UIView commitAnimations];