UIFont fontWithName返回nil

时间:2015-04-20 07:12:13

标签: objective-c uifont

此代码以字体形式返回Me nil。

我将open sans ttf文件添加到项目文件夹中。

我错过了什么?

UIFont *font = [UIFont fontWithName:@"OpenSans-Bold" size:fontSize];
    if (font)
    {
        [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:font size:fontSize] range:NSMakeRange(location, length)];
        label.attributedText = str;
    }

enter image description here

1 个答案:

答案 0 :(得分:12)

首先是您的 .plist 文件中注册的.ttf文件? 其次是你的字体被添加到“复制捆绑资源”? (在Target-> Build Phases下)

接下来尝试使用此代码列出所有可用字体及其名称。这样,您可以确保为字体使用正确的标识符。

for (NSString* fontFamily in [UIFont familyNames]) {
    NSArray *fontNames = [UIFont fontNamesForFamilyName:fontFamily];
    NSLog (@"%@: %@", fontFamily, fontNames);
}

修改

由于这个答案有点旧,我用 Swift 3.0 的相应答案进行了更新:

_ = UIFont.familyNames.map {
    let fontNames = UIFont.fontNames(forFamilyName: $0)
    print("Font Family: \($0), Font Names: \(fontNames)\n")
}