//导包CoreText
首先继承一个label,要想在一个label中实现各种不同颜色的字,就是重绘。不多说,上代码
//设置颜色属性和字体属性- (NSAttributedString *)illuminatedString:(NSString *)text
font:(UIFont *)AtFont{
int len = [text length];
//创建一个可变的属性字符串
NSMutableAttributedString *mutaString = [[[NSMutableAttributedString alloc] initWithString:text] autorelease];
//改变字符串 从1位 长度为1 这一段的前景色,即字的颜色。
/* [mutaString addAttribute:(NSString *)(kCTForegroundColorAttributeName)
value:(id)[UIColor darkGrayColor].CGColor
range:NSMakeRange(1, 1)]; */
[mutaString addAttribute:(NSString *)(kCTForegroundColorAttributeName)
value:(id)self.stringColor.CGColor
range:NSMakeRange(0, len)];
if (self.keywordColor != nil)