zoukankan      html  css  js  c++  java
  • IOS中一段文字设置多种字体颜色代码

    这篇文章主要介绍了IOS中一段文字设置多种字体颜色代码,十分的实用,有需要的小伙伴可以参考下。

      给定range和需要设置的颜色,就可以给一段文字设置多种不同的字体颜色,使用方法如下:

      代码如下:

      [self fuwenbenLabel:contentLabel FontNumber:[UIFont systemFontOfSize:15] AndRange:NSMakeRange(6, 1) AndColor:RGBACOLOR(34, 150, 253, 1)];

       代码如下:

      //设置不同字体颜色

      -(void)fuwenbenLabel:(UILabel *)labell FontNumber:(id)font AndRange:(NSRange)range AndColor:(UIColor *)vaColor

      {

      NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:labell.text];

      //设置字号

      [str addAttribute:NSFontAttributeName value:font range:range];

      //设置文字颜色

      [str addAttribute:NSForegroundColorAttributeName value:vaColor range:range];

      labell.attributedText = str;

      }

      以上所述就是本文的全部内容了,希望大家能够喜欢。

  • 相关阅读:
    案例分析
    阅读任务
    准备工作
    课程总结
    十三周总结
    第十二周总结
    第十一周学习总结
    第十周学习总结
    第九周课程总结&实验报告7
    第八周课程学习总结与实验6
  • 原文地址:https://www.cnblogs.com/tangaofeng/p/5009267.html
Copyright © 2011-2022 走看看