如何以编程方式将字体设置为标签

时间:2011-07-04 06:38:08

标签: iphone xcode

如何在Xcode 4中将字体设置为标签?

我试过这个

mylabel.setfont = @"DBLCDTempBlack";

3 个答案:

答案 0 :(得分:7)

使用以下其中一项

[mylabel setFont:[UIFont systemFontOfSize:13]];
[mylabel setFont:[UIFont boldSystemFontOfSize:13]];//or use this
myLabel.font=[UIFont systemFontOfSize:13]];//or
 mylabel.font=[UIFont boldSystemFontOfSize:13]//or

[mylabel setFont:[UIFont fontWithName:@"DBLCDTempBlack" size:128.0]];

还有一些其他方法可以查看用于创建UIFont的开发人员文档

答案 1 :(得分:3)

试试这个

[mylabel setFont:[UIFont fontWithName:@"fontname" size:128.0]];

答案 2 :(得分:3)

您需要使用以下语法:

[mylabel setFont:[UIFont fontWithName:@"DBLCDTempBlack" size:12.0f]];

你应该将UIFont对象传递给函数setFont。您可以使用http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIFont_Class/Reference/Reference.html#//apple_ref/doc/c_ref/UIFont

中的部分内容
fontWithName:size:
systemFontOfSize:
boldSystemFontOfSize:
italicSystemFontOfSize: