-
Add the two files in your project
-
Create a
NSMutableAttributedString
string :NSMutableAttributedString *hl = [[NSMutableAttributedString alloc]initWithString:@"Hello world"];
-
And highlight by passing the substring and the color:
[hl setColorForText:key withColor:[UIColor redColor]];
-(void)setColorForText:(NSString*) textToFind withColor:(UIColor*) color;