话不多说,直接上代码:
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 50)];
label.backgroundColor = [UIColor yellowColor];
[self.view addSubview:label];
NSString *contentStr = @"世界:hello world";
NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:contentStr];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 3)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:30.0] range:NSMakeRange(0, 3)];
label.attributedText = str;