我有一个简单的查询,我需要在 UIButton 文本和颜色下划线。我有 uibutton 的行文本,但是关于色调它不起作用。我已经从 xib 设置了色调颜色,它没有从那里获取。下面是我的代码。
NSMutableAttributedString *commentString = [[NSMutableAttributedString alloc] initWithString:@"Testing"];
[commentString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, [commentString length])];
[_helpWithLoginLabel setAttributedTitle:commentString forState:UIControlStateNormal];