1

以下のコードを使用して、スケールとアニメーションの変換を行っています。これにより、画像が画面の左下から中央に移動します。次回アニメーションをするときは左下からやり直したいです。しかし、アニメーションは開始されません。アニメーションを再開するには何が必要ですか?

// 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];
4

1 に答える 1

1

わかった。それを解決したのがこれです。

image.transform = CGAffineTransformIdentity
于 2012-05-01T15:50:16.693 に答える