如何在故事板中为UILabel设置自定义字体

时间:2014-08-21 11:11:13

标签: ios objective-c iphone fonts

我想在故事板中将自定义字体设置为UILabel。我有.ttf文件的字体。我在谷歌搜索它,每个人都以编程方式设置字体。

3 个答案:

答案 0 :(得分:7)

选择控件(标签)并添加用户定义的运行时属性密钥路径设置为 fontName 类型 >设置为字符串设置为自定义字体的名称。

注意:

确保您已将字体添加到项目中 - tutorial

enter image description here

答案 1 :(得分:1)

好消息是,这是在Xcode 6中添加到Interface Builder的新功能,如文档here

答案 2 :(得分:1)

将您的IBOutlet连接到Label,您可以这样设置,

lblHeading.font = [UIFont fontWithName:@"ApexNew-Bold" size:17];

in the above code ApexNew-Bold is custom font and you need to add it in Plistfile.

enter image description here