可可触摸 - 慢动CGPointMake

时间:2010-08-04 18:38:25

标签: cocoa-touch

我正在使用以下代码在屏幕上移动UIImageView。使用此代码,它会在屏幕上发射,但我希望它能够慢慢移动。我需要做什么?

[UIView beginAnimations:@"slide-up" context:NULL];
        astroid_1.center = CGPointMake(astroidPosX,astroidPosY);  // change this to somewhere else you want.
        [UIView commitAnimations];

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要设置动画的持续时间:

[UIView setAnimationDuration:1.0];