I\'m trying to use this font in my project but it won\'t work. I added the .ttf file in my project and added its name in the MyApp-Info.plist under the key: Fonts provided
Flinks answer is a handy tool to check if your fonts are loaded properly.
Do the following:
[_titleLabel setFont:[UIFont fontWithName:@"chalkboard" size:_titleLabel.font.pointSize]];
Make sure your fonts are included in your bundle:
build phases
'Copy Bundle Resources'
,
make sure your fonts are includedWorked for me :)