我正在制作带有光标和音乐的 iPhone/iPad 应用程序。我每个节拍都运行一个计时器并像这样移动它:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDelegate:self];
[UIView setAnimationDuration:theLength];
[UIView setAnimationBeginsFromCurrentState:YES];
theCursor.frame = CGRectMake(theX, 0, 6, 320);
[UIView commitAnimations];
然而,它似乎开始很快,然后随着它的结束而减速。有什么办法让动画稳定吗?