Skip to content

Commit

Permalink
Fix tvOS compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
vtourraine committed Apr 15, 2020
1 parent 6069f63 commit 76f00d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/VTAcknowledgementsViewController.m
Expand Up @@ -238,7 +238,7 @@ - (UILabel *)headerFooterLabelWithText:(NSString *)text {
UILabel *label = [[UILabel alloc] initWithFrame:frame];
label.text = text;
label.font = font;
if (@available(iOS 13.0, *)) {
if (@available(iOS 13.0, tvOS 13.0, *)) {
label.textColor = [UIColor secondaryLabelColor];
}
else {
Expand Down

0 comments on commit 76f00d2

Please sign in to comment.