不知道你们有没有遇到要设置某些字体的颜色和大小等属性的设置,下面就让咱们一块儿走进字体的变形王国吧!!!字体
1.在storyboard中拖一个控件label,拖线设置属性为:atom
@property (weak, nonatomic) IBOutlet UILabel *EasyLabel;
2.在viewDidLoad中设置属性:spa
主要用到的一个关键字眼是attribute ,请看下面的代码:code
- (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; }