I am trying to use my own font in my iPhone application.
I created a key for this in my info.plist as follows:
<key>UIAppFonts</key>
<array>
<string>CloisterBlack.ttf</string>
</array>
and I access the font as follows:
[UIFont fontWithName:@"CloisterBlack" size:64.0]
but the font is not displayed. What could be the reason?
source
share