UIImageView上的UIViewAnimationTransitionCurlDown?

时间:2010-09-10 10:58:34

标签: iphone animation uiviewanimationtransition

我正在搞乱UIView动画,我找到了采用某些常量的setAnimationTransition方法。

其中一个是UIViewAnimationTransitionCurlDown。

我想知道在UIImage视图中是否可以进行这种转换,我将如何实现它呢?

由于 汤姆

1 个答案:

答案 0 :(得分:2)

[UIImageView beginAnimations:nil context:NULL];
[UIImageView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:YourView cache:YES];
[UIImageView setAnimationDuration:1.5];
/// ----> [YourView CodeTo Be Done];
[UIImageView commitAnimations];