我可以让 UIImage 向右移动一点到 x 轴并回到原始位置。
-(void) uiview_anim
{
[UIView beginAnimations:@"Move" context:nil];
[UIView setAnimationDuration:3];
[UIView setAnimationBeginsFromCurrentState:YES];
CGPoint a;
a.x=finger.frame.origin.x;
a.x=a.x+10;
finger.center=a;
[UIView commitAnimations];
}
它也会移动 Y 方向,但我没有具体说明。我需要它在移动后迅速回到原来的位置。Finger 是我正在处理的 UIImageView。