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

给button增加下划线

时间:2018-11-01 16:11:42      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:nsstring   tab   uil   number   round   add   attr   size   mutable   

如何给button增加下划线简单版
 

- (void)setUnderLineForButton:(UIButton *)btn withTitle:(NSString *)title{

    //利用富文本的方式增加button下划线

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:title];

    NSRange strRange = {0,[str length]};

    [str addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleSingle] range:strRange];

    [btn setAttributedTitle:str forState:UIControlStateNormal];

}

给button增加下划线

标签:nsstring   tab   uil   number   round   add   attr   size   mutable   

原文地址:https://www.cnblogs.com/lsnow/p/9889471.html

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