FLEXCodeFontCell.m 430 B

1234567891011121314151617181920212223
  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.subtitleLabel.adjustsFontSizeToFitWidth = YES;
  16. }
  17. @end