0
ボタンをクリックするとアニメーションを再開する必要があります。ボタンに触れるとアニメーションを再開する
これは私のアニメーションのコードです:I再クリック(第2回クリック)私のボタンのアニメーションが動作しないとき:
imgStar.frame = CGRectMake(205, 6, imgStar.frame.size.width, imgStar.frame.size.height);
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(animationFinished:finished:context:)];
imgStar.transform = CGAffineTransformMakeTranslation(-4, 340);
[UIView commitAnimations];
問題は、ということです!
お願いします。
なぜこのアニメーションが2度目に機能しないのですか? – Dany