zoukankan      html  css  js  c++  java
  • label中设置某些指定的字体的属性设置(Color,Size,FontColor)

    不知道大家有没有遇到要设置某些字体的颜色和大小等属性的设置,下面就让我们一起走进字体的变形王国吧!!!

    1.在storyboard中拖一个控件label,拖线设置属性为:

    @property (weak, nonatomic) IBOutlet UILabel *EasyLabel;
    

     2.在viewDidLoad中设置属性:

    主要用到的一个关键字眼是attribute ,请看下面的代码:

    - (void)viewDidLoad {
        [super viewDidLoad];

    // attribute:属性
    // 下面两个同时存在的话第二个起作用 // self.EasyLabel.attributedText = [[NSAttributedString alloc]initWithString:@"会当凌绝顶,一览众山小"]; // self.EasyLabel.text = @"夏天"; // Label属性的设置 NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:@"停车坐爱枫林晚,双叶红与二月花"]; // 大小 [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:40] range:NSMakeRange(8, 7)]; // 背景颜色 [str addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(7, 7)]; // 字体颜色 [str addAttribute:NSForegroundColorAttributeName value:[UIColor purpleColor] range:NSMakeRange(4, 8)]; self.EasyLabel.attributedText = str; }
  • 相关阅读:
    MySQL 使用Anemometer基于pt-query-digest将慢查询可视化
    MySQL explain 中key_len的计算
    MySQL explain 详解
    Linux 误删libc.so.6
    Linux crontab 的格式及定义
    Azure容器监控部署(上)
    容器监控部署 -- 整体架构
    Prometheus 介绍
    zabbix自动停用与开启agent
    在jenkins中处理外部命令7z的异常
  • 原文地址:https://www.cnblogs.com/Ruby-Hua/p/5105597.html
Copyright © 2011-2022 走看看