tags:

views:

335

answers:

1

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

+2  A: 

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