Created
March 12, 2016 01:20
-
-
Save thornpig/56f2337658af4a480075 to your computer and use it in GitHub Desktop.
If UIButton blinks on title change
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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