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; }
原文地址:https://www.cnblogs.com/Ruby-Hua/p/5105597.html