Here is the working code for me
NSString * strEditedText= @"Please contact abc at 800.493.0016, option #3 for further assistance."; NSString *stringPh = @"800.493.0016"; NIAttributedLabel *label; label = [[NIAttributedLabel alloc] initWithFrame:CGRectMake(0, 0, 320, 100)]; label.delegate = self; label.font = [UIFont fontWithName:@"Helvetica" size:MAIN_FONT_SIZE]; label.textAlignment = UITextAlignmentLeft; label.lineBreakMode = UILineBreakModeWordWrap; label.numberOfLines = 0; label.backgroundColor = [UIColor clearColor]; label.highlightedTextColor = [UIColor whiteColor]; label.text = strEditedText; label.textColor = [UIColor blackColor]; [label setTextColor:[UIColor blueColor] range:[strEditedText rangeOfString:stringPh]]; [self.view addSubview:label];
source share