动画效果:叶子掉到地上

时间:2010-08-10 14:00:10

标签: iphone animation

需要设计一些变换代码来实现自然落下,就像树叶从树上掉下来一样。

以下是一些代码,从一个地方飞到另一个地方,有一些旋转角度。

[UIView beginAnimations:nil context:NULL]; 

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:5.0];
[UIView setAnimationDelegate:self];
//[UIView setAnimationRepeatCount:1e100f];  //coutless
[UIView setAnimationRepeatCount:1];   // 1 time 
//[UIView setAnimationRepeatAutoreverses:YES];


leaf2.frame = CGRectMake(LEAF2_X, LEAF2_Y, LEAF2_W, LEAF2_H);
leaf2.transform = CGAffineTransformMakeRotation(ANGLE);

[UIView commitAnimations];

1 个答案:

答案 0 :(得分:0)