码迷,mamicode.com
首页 > 其他好文 > 详细

Button的标题文字添加下划线

时间:2016-03-28 15:27:07      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

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的标题文字添加下划线

标签:

原文地址:http://www.cnblogs.com/xirui/p/5329021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!