我试图 UIView
来回发光两次。我下面的动画可以工作,但在它完成后它会进入我动画它的状态,而不是原始状态。我将 autoreverses 设置为 YES 那么为什么它不回到原始状态?
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationRepeatCount:2];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationDuration:0.3];
[UIView setAnimationBeginsFromCurrentState:YES];
textDetailView.layer.backgroundColor = [UIColor colorWithRed:0 green:1 blue:0 alpha:0.3].CGColor;
[UIView commitAnimations];