使用以下方法:
priceStr = @”¥28888/月”;
NSMutableAttributedString *price =[[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@”%@”,priceStr]];
NSRange blankRange = NSMakeRange([[price string] rangeOfString:@”/月”].location, [[price string] rangeOfString:@”/月”].length);
[price addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:blankRange];
[self.priceLabel setAttributedText:price];