Attributed Label, Set html text on label

NSString * htmlString = @”<html><body>Apple is <b>great</b> <u>company</u> in USA</body></html>”;

    NSMutableAttributedString * attrStr = [[NSMutableAttributedString alloc]initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding]options:@{ NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType } documentAttributes:nil error:nil];

       [attrStr addAttribute:NSForegroundColorAttributeName

                 value:[UIColor redColor]

                 range:NSMakeRange([attrStr length]-3, 3)];

        self.labelFirst.attributedText = attrStr;

Leave a comment