I'm having trouble getting a font to display. (Quicksand)
<key>UIAppFonts</key>
<array>
<string>bebas.ttf</string>
<string>Quicksand_Bold.ttf</string>
<string>Quicksand_Book.ttf</string>
</array>
I have tried various ways to call it "Quicksand", "Quicksand Bold", "Quicksand-Bold" and so on..
UILabel *theLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 890, 60)];
theLabel.font = [UIFont fontWithName:@"Quicksand-Bold" size:50];
theLabel.text = @"Label Text";
Is there an easy way to find the name I should use? In Font Book it is naming it "Quicksand Bold Regular", which also does not work.