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

根据搜素的字符串改变label包含该字符串的文字

时间:2016-07-15 17:05:40      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

http://www.2cto.com/kf/201504/391811.html

 

     NSString *text =@"人生若只如初见";

    //判断字符串所在的位置,并不区分大小写

    NSRange range = [text rangeOfString:@"若" options:NSCaseInsensitiveSearch];

    NSMutableAttributedString *attStr = [[NSMutableAttributedString alloc] initWithString:text];

  //设置其文字的颜色

    [attStr addAttribute:NSForegroundColorAttributeName value:RGBA(0, 161, 176, 1) range:range];

  //把字符串赋值给label

    [self.nameLabel setAttributedText:attStr];

 

根据搜素的字符串改变label包含该字符串的文字

标签:

原文地址:http://www.cnblogs.com/lyz0925/p/5673968.html

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