我想动态设置按钮标题的自定义字体,以便我如何设置它。
答案 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]];