0

我弄乱了 UIView 动画,我发现 setAnimationTransition 方法需要某些常量。

其中之一是 UIViewAnimationTransitionCurlDown。

我想知道这种类型的转换是否可以在 UIImage 视图上实现,我将如何实现它?

谢谢汤姆

4

1 回答 1

2
[UIImageView beginAnimations:nil context:NULL];
[UIImageView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:YourView cache:YES];
[UIImageView setAnimationDuration:1.5];
/// ----> [YourView CodeTo Be Done];
[UIImageView commitAnimations];
于 2010-09-10T11:05:04.220 回答