FLEXCodeFontCell.m 471 B

123456789101112131415161718192021222324
  1. //
  2. // FLEXCodeFontCell.m
  3. // FLEX
  4. //
  5. // Created by Tanner on 12/27/19.
  6. // Copyright © 2019 Flipboard. All rights reserved.
  7. //
  8. #import "FLEXCodeFontCell.h"
  9. #import "UIFont+FLEX.h"
  10. @implementation FLEXCodeFontCell
  11. - (void)postInit {
  12. [super postInit];
  13. self.titleLabel.font = UIFont.flex_codeFont;
  14. self.subtitleLabel.font = UIFont.flex_smallCodeFont;
  15. self.subtitleLabel.alpha = 0.5;
  16. self.subtitleLabel.adjustsFontSizeToFitWidth = YES;
  17. }
  18. @end