将一个字符串中的特定字符添加颜色
Posted 果然小行家
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将一个字符串中的特定字符添加颜色相关的知识,希望对你有一定的参考价值。
/** 将一个字符串中的特定字符添加颜色 */- (NSMutableAttributedString *)colorStr:(NSString *)colorStr withColor:(UIColor *)color font:(NSInteger)font
NSRange range = [self rangeOfString:colorStr];
NSMutableAttributedString *attribute = [[NSMutableAttributedString alloc] initWithString:self];
NSMutableDictionary *dic = [NSMutableDictionary dictionary];
dic[NSForegroundColorAttributeName] = color;
if (font > 0)
dic[NSFontAttributeName] = [UIFont systemFontOfSize:font];
[attribute addAttributes:dic range:NSMakeRange(range.location,range.length)];
return attribute;
以上是关于将一个字符串中的特定字符添加颜色的主要内容,如果未能解决你的问题,请参考以下文章