码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 改变字符串中特定字符的颜色和大小。

时间:2015-02-12 12:00:01      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

 UILabel *lable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 300)];
    lable.text = @"其中俩字是红色,大小为17";

    NSRange rangeRmb=[lable.text rangeOfString:[NSString stringWithFormat:@"红色"]];
    NSMutableAttributedString *rmbStr=[[NSMutableAttributedString alloc] initWithString:lable.text attributes:nil];
    if ([[[UIDevice currentDevice] systemVersion] floatValue]>=6.0) {
        NSDictionary *fontDic=[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],NSForegroundColorAttributeName,[UIFont systemFontOfSize:17],NSFontAttributeName, nil];
        [rmbStr addAttributes:fontDic range:rangeRmb];
        lable.attributedText = rmbStr;
    }else{
        lable.text=rmbStr.string;
    }

 

 

IOS 改变字符串中特定字符的颜色和大小。

标签:

原文地址:http://www.cnblogs.com/mlgbya/p/4287451.html

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