Button的标题文字添加下划线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Button的标题文字添加下划线相关的知识,希望对你有一定的参考价值。

1 NSMutableAttributedString *c = [[NSMutableAttributedString alloc] initWithString:@"忘记密码?"];
2     NSRange contentRange = {0, [c length]};
3     [c addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:contentRange];
4     //UIFontTools * fonttools = [UIFontTools defaultUIFontTool];
5     //[self.btn_wangjimima.titleLabel setFont:[fonttools forgetPWDButtonFont]];
6   self.btn_skipVerification.titleLabel.attributedText = c;

 

以上是关于Button的标题文字添加下划线的主要内容,如果未能解决你的问题,请参考以下文章