I am using below code to convert HTML text into NSMutableAttributedString and showing it in UITextView. -
attributedStringTitle = [[NSMutableAttributedString alloc] initWithData:[titleString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
This is working fine for iOS 7 or later but not working on iOS 6.. Please help.