简体   繁体   中英

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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