一种简单的在同一条string里变不同的颜色

               NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"猜你喜欢  很抱歉,没有找到您所需要的信息"];
                
                [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,4)];
                
                [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(5,16)];
                
                _sourceLabel.attributedText = str;

你可能感兴趣的:(一种简单的在同一条string里变不同的颜色)