iOS开发改变字符串中指定字符颜色,大小等等
Posted Vijay的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发改变字符串中指定字符颜色,大小等等相关的知识,希望对你有一定的参考价值。
NSString *strJTGZ = [NSString stringWithFormat:@"交通管制%d处 ",[jtgz intValue]]; NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc]initWithString:strJTGZ]; [attributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(4, [self getRedNumberLength:[jtgz intValue]])]; [mutableStr appendAttributedString:attributedStr];
以上是关于iOS开发改变字符串中指定字符颜色,大小等等的主要内容,如果未能解决你的问题,请参考以下文章
除了使用字符串文字之外,还有其他方法可以在 C 中指定或输入 Unicode 代码点吗?
C++ std::string::find_first_of()函数(在字符串中搜索与其参数中指定的任何字符匹配的第一个字符)