Skip to content

Instantly share code, notes, and snippets.

@chbeer
Created October 2, 2013 09:36
Show Gist options
  • Save chbeer/6791293 to your computer and use it in GitHub Desktop.
Save chbeer/6791293 to your computer and use it in GitHub Desktop.
How to animate changing the textColor of a UILabel
[UIView transitionWithView:nameLabel
duration:0.25
options:UIViewAnimationOptionTransitionCrossDissolve
animations:^{
[nameLabel setTextColor:textColor];
}
completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment