< 返回首页

标哥的笔记,是记录在日常学习技术和日常开发中那些年遇到过的坑!本站为新站,原"标哥的技术博客"中的文章会慢慢移到本站,欢迎收藏本站!
在使用本站过程中,有任何建议请联系标哥! 另,承接App开发、网站开发和微信小程序开发!欢迎联系我们


UILabel设置多种字体颜色

 作者:标哥    发布日期:2017-01-12 12:37    阅读量:728次
 

本篇文章是做个笔记,设置UILabel的样式代码片断,方便以后查询!开发中常用到的设置UILabel的文本样式代码片段!

设置UILabel样式

NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String,try your best to test attributed string text"];

[str addAttribute:NSForegroundColorAttributeName
            value:[UIColor blueColor]
            range:NSMakeRange(0,5)];
[str addAttribute:NSForegroundColorAttributeName
            value:[UIColor redColor]
            range:NSMakeRange(6,12)];
[str addAttribute:NSForegroundColorAttributeName
            value:[UIColor greenColor]
            range:NSMakeRange(19,6)];
[str addAttribute:NSFontAttributeName
            value:[UIFont fontWithName:@"Arial" size:30.0]
            range:NSMakeRange(0, 5)];
[str addAttribute:NSFontAttributeName
            value:[UIFont fontWithName:@"Arial" size:30.0]
            range:NSMakeRange(6, 12)];
[str addAttribute:NSFontAttributeName
            value:[UIFont fontWithName:@"Arial" size:30.0]
            range:NSMakeRange(19, 6)];

UILabel *attrLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 150, 320 - 40, 90)];
attrLabel.attributedText = str;
attrLabel.numberOfLines = 0;

说明

NSMutableAttributedString类可以添加各种样式,常用的设置key有:

  1. NSForegroundColorAttributeName 设置前景色,也就是文本颜色

  2. NSFontAttributeName 设置字体

  3. NSBackgroundColorAttributeName 设置背景色

更多内容点击NSMutableAttributedString进去查看声明。


承接:ThinkPHP项目开发、网站项目开发、微信项目开发、微信小程序项目开发、App开发,欢迎联系标哥QQ632840804