如何在iOS中将自定义字体设置为标签?

时间:2014-12-15 15:38:06

标签: ios fonts

我是iOS开发中的新手。我想为我的Label设置自定义字体。为此,我在我的项目中添加了我的Font.ttf文件,并将其添加到info.plist文件“应用程序提供的字体”我的字体名称。另外,我检查了我的项目构建阶段“复制包资源”,其中包含我的Font.ttf名称,但标签字体没有变化,请给我解决方案。

代码就像

一样
[cell.headLabel setFont:[UIFont fontWithName:@"RobotoCondensed-Bold" size:10.0f]];

2 个答案:

答案 0 :(得分:0)

网上有很多这样的例子。快速谷歌搜索出现了这个:

http://codewithchris.com/common-mistakes-with-adding-custom-fonts-to-your-ios-app/

答案 1 :(得分:0)

看看这个:

http://codewithchris.com/common-mistakes-with-adding-custom-fonts-to-your-ios-app/

尝试将所有字体记录到您的控制台,看看是否列出了您的字体:

for (NSString* family in [UIFont familyNames])
{
    NSLog(@"%@", family);

    for (NSString* name in [UIFont fontNamesForFamilyName: family])
    {
        NSLog(@"  %@", name);
    }
}