1

how can I load and embed a custom font in my iphone app? what font file types are supported? (otf, ttf...)

Comma
  • 1,567
  • 3
  • 15
  • 22
  • 1
    This is a duplicate of http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application – Brad Larson Apr 27 '10 at 17:11

1 Answers1

3

It is possible to supply fonts with your app and use them. Take a look at CGFontCreateWithDataProvider which should provide all the functionality you need.

At least TTF is supported, not sure about OTF.

Wim Haanstra
  • 5,918
  • 5
  • 41
  • 57