改变个别字体颜色的富文本

来源:互联网 发布:世界粮农组织2017数据 编辑:程序博客网 时间:2024/05/17 10:42

//改变个别字体颜色的富文本

+(NSMutableAttributedString *)SyhAttributedStringWithOne:(NSString *)str TextColor:(UIColor *)mColor

{

   NSInteger count=str.length;

    NSMutableAttributedString * string=[[NSMutableAttributedStringalloc]initWithString:str];

    [stringaddAttribute:NSForegroundColorAttributeNamevalue:mColor range:NSMakeRange(0, count-1)];

   return string;

}

0 0
原创粉丝点击