label实现不同大小不同颜色

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"你的文本"]; [str addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0,str.length-1)]; //设置字体颜色 [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial" size:30.0] range:NSMakeRange(0, str.length-1)]; label.attributedText = str;

转载于:https://my.oschina.net/3191575746/blog/805822

你可能感兴趣的:(label实现不同大小不同颜色)