Skip to content

Instantly share code, notes, and snippets.

@thornpig
Created March 12, 2016 01:20
Show Gist options
  • Save thornpig/56f2337658af4a480075 to your computer and use it in GitHub Desktop.
Save thornpig/56f2337658af4a480075 to your computer and use it in GitHub Desktop.
If UIButton blinks on title change
[UIView setAnimationsEnabled: NO];
[button setTitle: @"New Title" forState:UIControlStateNormal];
[button layoutIfNeeded]; //why is this needed?
[UIView setAnimationsEnabled: YES];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment