UIFontLabel.m 552 B

12345678910111213141516171819202122232425262728
  1. /*
  2. =======================================================================================
  3. Copyright (C) 2009-2011 id Software LLC, a ZeniMax Media company. All Right Reserved.
  4. This file is part of the DOOM Classic iOS v2.1 GPL Source Code.
  5. =======================================================================================
  6. */
  7. #import "UIFontLabel.h"
  8. @implementation UIFontLabel
  9. - (void)awakeFromNib {
  10. CGFloat points = self.font.pointSize;
  11. self.font = [UIFont fontWithName:@"idGinza Narrow" size:points];
  12. }
  13. @end