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

字体的下划线

时间:2016-06-28 23:49:59      阅读:444      评论:0      收藏:0      [点我收藏+]

标签:

 NSString * sit= @"忘记密码";
   
    NSMutableAttributedString *sti =[[NSMutableAttributedString alloc]initWithString:sit];
 
 
 //设置背景颜色以及下划线
    NSDictionary * dict1 = @{//字体颜色
                             NSForegroundColorAttributeName:[UIColor colorWithRed:33/255.0 green:125/255.0 blue:192/255.0 alpha:1],
                             NSFontAttributeName:[UIFont fontWithName:@"Helvetica-Bold" size:19],
                             NSUnderlineStyleAttributeName:@"1"};
   
    //从下标14开始,长度为6的内容添加多个属性,dict1里面写的就是添加的属性
    [sti addAttributes:dict1 range:NSMakeRange(0, 4) ];

字体的下划线

标签:

原文地址:http://www.cnblogs.com/hangman/p/5625309.html

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