以下のコードを使用して、スケールとアニメーションの変換を行っています。これにより、画像が画面の左下から中央に移動します。次回アニメーションをするときは左下からやり直したいです。しかし、アニメーションは開始されません。アニメーションを再開するには何が必要ですか?
// Setup the animation
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:duration];
[UIView setAnimationCurve:curve];
[UIView setAnimationBeginsFromCurrentState:YES];
// The transform matrix
CGAffineTransform transform = CGAffineTransformMakeTranslation(x, y);
CGAffineTransform scale = CGAffineTransformMakeScale(2.0,2.0);
CGAffineTransform scale_transform = CGAffineTransformConcat(transform,scale);
image.transform = scale_transform;
[UIView commitAnimations];