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

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

    
headlinelabel.attributedText = attributedString;
    
[headlinelabel sizeToFit];
posted @ 2017-05-21 17:52  gccbuaa  阅读(220)  评论(0编辑  收藏  举报