17

UIButtonにテキストを設定するための次のコードがあります

[self.fullListButton_ setTitle:[NSString stringWithFormat:@"%d", [self.newsfeedItem_.newsfeedToSubjects count] - 3] forState:UIControlStateNormal];

問題は、このためのフォントを設定できないようです。どうすればいいですか?

4

1 に答える 1

35

iOSの新しいバージョンでは:

UIButton * myButton;
myButton.titleLabel.font = [UIFont systemFontOfSize: 12];

または他のフォントメカニズム。

UIButtonの部分についてはこちらをご覧ください。

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIButton_Class/UIButton/UIButton.html#//apple_ref/occ/instp/UIButton/titleLabel

そしてここにUIFontのものがあります:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIFont_Class/Reference/Reference.html

あなたのコードでは:

self.fullListButton_.titleLabel.font = [UIFont systemFontOfSize: 12];

また

self.fullListButton_.titleLabel.font = [UIFont fontWithName:@"Arial" size:12];
于 2012-07-12T00:00:13.867 に答える