1. 程式人生 > >設置字符串中某些字符的特殊效果

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

tof attribute content adl custom string fit size col

NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:self.title];

[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor customBlueColor]range:NSMakeRange(1, 1)];


headlinelabel.attributedText = attributedString;

[headlinelabel sizeToFit];

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