Gate ASButtonNode setTitle method since [UIFont buttonFontSize] is unavailable on tvOS 9.1

This commit is contained in:
Aaron Schubert
2016-02-05 14:23:01 +00:00
parent 08d15e4ca5
commit f39ee46b61
2 changed files with 4 additions and 1 deletions

View File

@@ -196,6 +196,7 @@
[self setNeedsLayout];
}
#if TARGET_OS_IOS
- (void)setTitle:(NSString *)title withFont:(UIFont *)font withColor:(UIColor *)color forState:(ASControlState)state
{
NSDictionary *attributes = @{
@@ -207,6 +208,7 @@
attributes:attributes];
[self setAttributedTitle:string forState:state];
}
#endif
- (NSAttributedString *)attributedTitleForState:(ASControlState)state
{