我有以下用于在UIButton中设置文本的代码
[self.fullListButton_ setTitle:[NSString stringWithFormat:@"%d", [self.newsfeedItem_.newsfeedToSubjects count] - 3] forState:UIControlStateNormal];
问题是我似乎无法为此设置字体。我该怎么做?
答案 0 :(得分:34)
在较新版本的iOS中:
UIButton * myButton;
myButton.titleLabel.font = [UIFont systemFontOfSize: 12];
或任何其他字体机制。
在这里查看UIButton部分:
这里是UIFont的东西:
在您的代码中:
self.fullListButton_.titleLabel.font = [UIFont systemFontOfSize: 12];
或
self.fullListButton_.titleLabel.font = [UIFont fontWithName:@"Arial" size:12];