iOS---NSMutableAttributedString使⽤基本⽅法
此⽅法在实际项⽬中经常会⽤到,⽐如现实⾦额显⽰,特别标注,提醒的时候。
NSString *str1 = @"Created by 刘凯 on 15/10/26.";
NSString *str2 = @" Copyright © 2015年 刘凯. All rights rerved.";
NSMutableAttributedString *string = [[NSMutableAttributedString alloc]initWithString:[NSString
stringWithFormat:@"%@%@",str1,str2]];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor orangeColor] range:NSMakeRange(0, str1.length)];//此处的str1.length可以设定固定直。
lf.TEST.attributedText = string;