如何在UIButton上动态设置不同的字体?

时间:2011-02-16 09:41:50

标签: iphone ios4 uibutton

我想动态设置按钮标题的自定义字体,以便我如何设置它。

2 个答案:

答案 0 :(得分:21)

UIButton *button        = [UIButton buttonWithType: UIButtonTypeRoundedRect];
button.titleLabel.font  = [UIFont fontWithName:@"font name" size:12];

答案 1 :(得分:0)

[tmp setFont:[UIFont fontWithName:@"American Typewriter" size:18]];

字体名称从数组中取出并继续更改索引。

所以它看起来像

[tmp setFont:[UIFont fontWithName:[fontArray objectAtIndex:desiredIndex] size:18]];