标签:
 UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 300, 100)];
    label.numberOfLines = 0;
    label.center = self.view.center;
    
    NSMutableAttributedString * str = [[NSMutableAttributedString alloc]initWithString:@"你说你最爱丁香花,因为你的名字就是它,多么忧郁的花,多愁善感的人啊!"];
    NSDictionary * dict = @{NSForegroundColorAttributeName:[UIColor redColor],NSBackgroundColorAttributeName:[UIColor orangeColor]};
    [str addAttributes:dict range:NSMakeRange(9, 9)];
    
    NSDictionary * dict1 = @{NSForegroundColorAttributeName:[UIColor blueColor],NSBackgroundColorAttributeName:[UIColor greenColor]};
    [str addAttributes:dict1 range:NSMakeRange(19, 6)];
    label.attributedText = str;
    [self.view addSubview:label]; 
标签:
原文地址:http://my.oschina.net/linxiaoxi1993/blog/469561