FLEXCodeFontCell.m 622 B

12345678910111213141516171819202122232425262728
  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_codeFont;
  15. self.titleLabel.adjustsFontSizeToFitWidth = YES;
  16. self.titleLabel.minimumScaleFactor = 0.9;
  17. self.subtitleLabel.adjustsFontSizeToFitWidth = YES;
  18. self.subtitleLabel.minimumScaleFactor = 0.75;
  19. self.subtitleLabel.numberOfLines = 5;
  20. }
  21. @end