UILabel * label = [[UILabel alloc]init];
NSString * htmlString = @"<span style=\"font-family:Helvetica;font-size:15pt;color:#9DC216\">感谢使用 </span> <span style=\"font-family:Helvetica;font-size:15pt;color:#222332\">Uday 友电</span>";
NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType} documentAttributes:nil error:nil];
label.attributedText = attrStr;
label.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:label];
原文:http://www.cnblogs.com/zbuser/p/5425061.html