我正在尝试在自定义 UIButton 上的标题中添加下划线,但是按照此处找到的示例,我无法将其显示在屏幕上。
这是我尝试使用的代码:
NSMutableAttributedString *commentString = [[NSMutableAttributedString alloc] initWithString:@"The Quick Brown Fox"];
[commentString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, [commentString length])];
[button setAttributedTitle:commentString forState:UIControlStateNormal];
这没有出现。但如果我只是做一个普通的,像这样:
[button setTitle:@"The Quick Brown Fox" forState:UIControlStateNormal];
这显示得很好。有人能告诉我我错过了什么吗?