博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
改变字符串里面多个颜色
阅读量:5098 次
发布时间:2019-06-13

本文共 1077 字,大约阅读时间需要 3 分钟。

  NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"作品:%@",data[@"works_num"]]];

    NSRange redRange = NSMakeRange(0, [[noteStr string] rangeOfString:@":"].location);

    [noteStr addAttribute:NSForegroundColorAttributeName value:COLOR_9999COLOR range:redRange];

    [_productLabel setAttributedText:noteStr] ;

    [_productLabel sizeToFit];

 

 

 

 //获取内容高度 判断高度的大小 改变其他控件的坐标

    CGFloat heigh1 = [Unit heightWithString:_synopsisLab.text

                                       font:_synopsisLab.font

                         constrainedToWidth:_synopsisLab.width];

    _synopsisLab.height = heigh1;

    synopsisBackView.height = _synopsisLab.height+73;

 

NSString *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;

 最后是strStaus里面的字体颜色变成orange

转载于:https://www.cnblogs.com/liaolijun/p/5486383.html

你可能感兴趣的文章
88. Merge Sorted Array java solutions
查看>>
347. Top K Frequent Elements java solutions
查看>>
面试总结
查看>>
EL表达式
查看>>
5:练习题
查看>>
【转帖】快学正则表达式
查看>>
bzoj 1070: [SCOI2007]修车 -- 费用流
查看>>
Tomcat设计模式
查看>>
BZOJ1041 HAOI2008圆上的整点(数论)
查看>>
GitHub详细教程
查看>>
分布式事务、两阶段提交协议、三阶提交协议
查看>>
差分约束
查看>>
UINavigationCountroller pop到指定界面
查看>>
NoSQL相关数据库
查看>>
安卓扁平化之路专题(四)Material Design
查看>>
案例:音乐列表
查看>>
npm
查看>>
vue-cli安装
查看>>
渐进增强和优雅降级
查看>>
Html和Css学习笔记-css基础知识
查看>>