Ios 在UIImageView上从左下角(而不是右下角)进行页面卷曲动画

Ios 在UIImageView上从左下角(而不是右下角)进行页面卷曲动画,ios,objective-c,uianimation,Ios,Objective C,Uianimation,我需要从左下角页卷曲动画 当我写下面的代码页将从右下角动画。但若我需要从左下角得到同样的效果,我该怎么做呢 谢谢 [UIView beginAnimations:@"View Flip" context:nil]; [UIView setAnimationDuration:1]; [UIView setAnimationDelegate:self]; [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; [UIView setAnim

我需要从左下角页卷曲动画

当我写下面的代码页将从右下角动画。但若我需要从左下角得到同样的效果,我该怎么做呢

谢谢

[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationDelegate:self];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationTransition:
 UIViewAnimationTransitionCurlUp forView:_imagePreviewView cache:NO];
[UIView commitAnimations];
试试看。使用全角管理的动画

试试这个