我已将我的 ttf 字体(ABeeZee-Italic.ttf)从 Google WebFonts 复制到 Supporting Files 并添加到 plist 中:
并用 tag = 4 分配我的标签:
因为我有这段代码可以将字体嵌入到 UILabel 中:
for (UILabel *customLabel in [[self view] subviews]) {
if (customLabel.tag == 1) {
[customLabel setFont:[UIFont fontWithName:@"Raleway-ExtraLight" size:21]];
} else if (customLabel.tag==2){
[customLabel setFont:[UIFont fontWithName:@"ABeeZee-Regular" size:14]];
} else if (customLabel.tag==3){
[customLabel setFont:[UIFont fontWithName:@"ABeeZee-Regular" size:11]];
} else if (customLabel.tag==4){
[customLabel setFont:[UIFont fontWithName:@"ABeeZee-Italic" size:12]];
}
}
这一切都像一个魅力,但斜体字体没有加载到我的 iPod (iOS 6.1.3) 中。带有标签 4 的 UILabel 是 iOS 系统字体。不是ABeeZee-Italic。
我试图更改标签号,但也失败了。将非常规字体嵌入 iOS 是否有任何特定要求?
谢谢你
更新 @iPatel 答案:这是我的 FontBook 的样子,它具有相同的名称......