需要帮助动画iPhone上的车轮

时间:2010-08-19 05:14:05

标签: iphone animation touch drag image-rotation

我正在iphone上做一个应用程序,当我拖动它时需要旋转飞镖轮。视图将有一个飞镖轮图像,当我们拖动轮子时,它会旋转并慢慢停止。

任何人都可以帮我制作这个动画。

1 个答案:

答案 0 :(得分:2)

您可以将CoreAnimation用于旋转动画:

[UIView beginAnimations:nil context:nil];

[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
[UIView setAnimationDuration:1.0f];
[view.layer setTransform:CGAffineTransformMakeRotation(M_PI)];

[UIView commitAnimations];

您必须根据需要调整动画。