我无法获得要显示的字体。(流沙)
<key>UIAppFonts</key>
<array>
<string>bebas.ttf</string>
<string>Quicksand_Bold.ttf</string>
<string>Quicksand_Book.ttf</string>
</array>
我尝试了各种方式来称呼它为“流沙”、“流沙粗体”、“流沙粗体”等等。
UILabel *theLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 890, 60)];
theLabel.font = [UIFont fontWithName:@"Quicksand-Bold" size:50];
theLabel.text = @"Label Text";
有没有一种简单的方法可以找到我应该使用的名称?在 Font Book 中将其命名为“Quicksand Bold Regular”,这也不起作用。