简体   繁体   English

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

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

I need page curl animation from left bottom corner. 我需要左下角的页面卷曲动画。

When I write below code page will animating from right bottom corner. 当我在下面编写代码时,页面将从右下角进行动画处理。 But how can I do this if I need same effect from bottom left corner. 但是,如果我需要从左下角获得相同的效果,该怎么办。

Thanks! 谢谢!

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

Try this . 试试这个 animation with all corner managemeent 全方位管理的动画

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM