我有一个标签,我想淡入然后淡出.
这是我的代码:
这是我的代码:
-(void) fadein { scoreLabel.alpha = 0; [UIView beginAnimations:nil context:nil]; [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; [UIView setAnimationDuration:2]; scoreLabel.alpha = 1; [UIView commitAnimations]; [UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)]; } -(void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:2]; scoreLabel.alpha = 0; [UIView commitAnimations]; }
解决方法
-(void) fadein { scoreLabel.alpha = 0; [UIView beginAnimations:nil context:nil]; [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; //don't forget to add delegate..... [UIView setAnimationDelegate:self]; [UIView setAnimationDuration:2]; scoreLabel.alpha = 1; //also call this before commit animations...... [UIView setAnimationDidStopSelector:@selector(animationDidStop:finished:context:)]; [UIView commitAnimations]; } -(void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context { { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:2]; scoreLabel.alpha = 0; [UIView commitAnimations]; }