我正在使用以下代码在屏幕上移动UIImageView。使用此代码,它会在屏幕上发射,但我希望它能够慢慢移动。我需要做什么?
[UIView beginAnimations:@"slide-up" context:NULL];
astroid_1.center = CGPointMake(astroidPosX,astroidPosY); // change this to somewhere else you want.
[UIView commitAnimations];
谢谢!
答案 0 :(得分:1)
您需要设置动画的持续时间:
[UIView setAnimationDuration:1.0];