改变 某段字体的颜色
Posted 举个例子yi聪聪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改变 某段字体的颜色相关的知识,希望对你有一定的参考价值。
strStaus = [晴]
NSString *str = [NSString stringWithFormat:@"天气:%@ ",,strStaus];
NSMutableAttributedString *attrDescribeStr = [[NSMutableAttributedString alloc] initWithString:str];
[attrDescribeStr addAttribute:NSForegroundColorAttributeName
value:[UIColor orangeColor]
range:[str rangeOfString:strStaus]];
self.myNameLable.attributedText = attrDescribeStr;
文/命中注定IU(简书作者)
原文链接:http://www.jianshu.com/p/a370b52e66c8
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。
原文链接:http://www.jianshu.com/p/a370b52e66c8
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。
以上是关于改变 某段字体的颜色的主要内容,如果未能解决你的问题,请参考以下文章