1
我正在使用此代碼來製作動畫。我的問題是如何停止動畫?不要告訴我改變重複次數。我想動畫工作,直到我說停止。有沒有一種方法可以用來實現這一點?如何停止動畫?
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationRepeatCount:INFINITY];
[[menuViewOne loadBut] setFrame:CGRectMake(230, 35, 150, 25)];
[UIView commitAnimations];