我正在搞乱UIView动画,我找到了采用某些常量的setAnimationTransition方法。
其中一个是UIViewAnimationTransitionCurlDown。
我想知道在UIImage视图中是否可以进行这种转换,我将如何实现它呢?
由于 汤姆
答案 0 :(得分:2)
[UIImageView beginAnimations:nil context:NULL];
[UIImageView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:YourView cache:YES];
[UIImageView setAnimationDuration:1.5];
/// ----> [YourView CodeTo Be Done];
[UIImageView commitAnimations];