Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edwardean/1a932c9851a42a28de1229248b210ae0 to your computer and use it in GitHub Desktop.
Save edwardean/1a932c9851a42a28de1229248b210ae0 to your computer and use it in GitHub Desktop.
UILabel文字切换动画
[UIView transitionWithView:_animatedLabel duration:0.5 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{ _animatedLabel.textColor = colorChanged?[UIColor greenColor]:[UIColor blackColor]; } completion:^(BOOL finished) { }];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment