Update examples to use UIControlState (#3013)

This commit is contained in:
Adlai Holler
2017-02-10 13:35:15 -08:00
committed by GitHub
parent 2dca7a0c8d
commit 7424b6d7f7
7 changed files with 18 additions and 18 deletions

View File

@@ -71,7 +71,7 @@
NSDictionary *attributes = @{NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue-Light" size:22.0f]};
NSAttributedString *string = [[NSAttributedString alloc] initWithString:text
attributes:attributes];
[_buttonNode setAttributedTitle:string forState:ASControlStateNormal];
[_buttonNode setAttributedTitle:string forState:UIControlStateNormal];
[self setNeedsLayout];
}