以编程方式更改UIButton的标题颜色,其标题设置为iOS 7中的属性

时间:2014-07-02 07:26:10

标签: iphone ios7 uibutton nsattributedstring

我已通过编程方式在UIButton中添加了一个UITableView。我的问题是我需要提供Letter Spacing以及需要更改按钮标题颜色。我使用下面的代码在按钮标题文本中给出Letter Spacing,但标题文本颜色没有变化。

这是我的代码:

btnLogin = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btnLogin.frame = CGRectMake(0, 0, 320, 42);
btnLogin.titleLabel.font = customFont;

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:@"LOG IN"];

[attributedString addAttribute:NSKernAttributeName
                         value:@(spacing)
                         range:NSMakeRange(0, [@"LOG IN" length])];

[btnLogin setAttributedTitle:attributedString forState:UIControlStateNormal];

btnLogin.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"cell_highlighted.png"]];

[btnLogin setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; //it's not working.

[btnLogin addTarget:self action:@selector(onClickLogin) forControlEvents:UIControlEventTouchUpInside];

[cell addSubview:btnLogin];
[cell.contentView bringSubviewToFront:btnLogin];

您能帮我解决一下如何更改按钮标题颜色吗?感谢。

2 个答案:

答案 0 :(得分:11)

我在@Larme的帮助下得到了答案。

只需添加此行:

[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor whiteColor] range:NSMakeRange(0, [@"LOG IN" length])];

感谢所有!!

答案 1 :(得分:2)

Swift版本

 attributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.skyBlue, range: NSMakeRange(0, attributedString.string.length))