1

Can anyone direct me on how to change/apply a font:FS Elliot on a UILabel. I have been searching Google and found none. Any help will be appreciated. Thanks in advance.

RicoRicochet
  • 2,249
  • 9
  • 28
  • 53
  • possible duplicate of [Can I embed a custom font in an iPhone application?](http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application) – Ryan Jan 21 '15 at 06:31

1 Answers1

0

01 Add your ttf font file to the Xcode project under resources.

02 Add array in the info.plist with the key UIAppFonts and every font you want to added to it.

03 Call [UIFont fontWithName:@"CustomFontName" size:15] from everywhere you need

Christian
  • 382
  • 2
  • 11