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 です。