我想在故事板中将自定义字体设置为UILabel。我有.ttf文件的字体。我在谷歌搜索它,每个人都以编程方式设置字体。
答案 0 :(得分:7)
答案 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.