此代码在 iOS 6 上运行良好
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:textView.text];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:[textView.text rangeOfString:self.searchString options:NSCaseInsensitiveSearch range:searchRange]];
[textView setAttributedText:attributedString];
但是 NSForegroundColorAttributeName 在 iOS 5 中是未定义的,所以我想要在 iOS 5 中工作的与之前的代码等效的代码。