UILabel* colorLabel = [[UILabelalloc]init];
colorLabel.frame=CGRectMake(0,100,200,100);
colorLabel.textColor= [UIColorblackColor];
NSMutableAttributedString*colorStr = [[NSMutableAttributedStringalloc]initWithString:@"在哪里呀蛤蛤蛤拉风的"];
NSRangeredRange = [[colorStrstring]rangeOfString:@"哪里呀"];
[colorStraddAttribute:NSForegroundColorAttributeNamevalue:[UIColorredColor]range:redRange];
[colorLabelsetAttributedText:colorStr];
[colorLabelsizeToFit];
网友评论