I am trying to set a custom font on my UILabels
- Font name:
Lucida Sans Unicode.ttf
- Font postscript:
LucidaSans-Typewriter
Now I have added the font to my Plist with the name Lucida-Sans-Unicode.ttf
. I've added the '-' because I read somewhere that the spaces maybe can cause the problem. I also changed the name of the font to the name with the '-' in it.
Finally on my Label I call the font like this.
[UIFont fontWithName:@"LucidaSans-Typewriter" size:12.0f]
But still the font has not been set correctly. Can someone help me ?
Kind regards