从 UIImageView 的左下角而不是右下角的页面卷曲动画

Page curl animation from left bottom corner instead of right bottom corner on UIImageView

我需要左下角的卷页动画。

当我在下面编写代码时,页面将从右下角开始动画。但是,如果我需要从左下角获得相同的效果,我该怎么做呢?

谢谢!

[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationDelegate:self];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:
 UIViewAnimationTransitionCurlUp forView:_imagePreviewView cache:NO];
[UIView commitAnimations];

尝试this。全角管理动画