如何在Xcode 4中将字体设置为标签?
我试过这个
mylabel.setfont = @"DBLCDTempBlack";
答案 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: