设置字符串中某些字符的特殊效果

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:self.title];
   
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor customBlueColor]range:NSMakeRange(1, 1)];

    
headlinelabel.attributedText = attributedString;
    
[headlinelabel sizeToFit];
原文地址:https://www.cnblogs.com/gccbuaa/p/6885464.html