TextView display HTML text in iOS

Source: Internet
Author: User

In the interface layout, we will use a variety of controls to display the data we want to show, before encountering such a problem, I came from the background of the data is JSON, after parsing directly into a textview to display, but did not notice that the data is in HTML format, directly used


As a result, the following situation occurs:


Not processed. png

Looked up some information, found in the TextView has a attributedtext attribute, in the label also has, the specific is not here said, can self-query. To say how to solve the problem.
Such as:


A second method. png

This is to get the model of the data first, and then switch it over. Then it's OK:


After processing. png
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];self.msg.attributedText = attributedString;



TextView display HTML text in iOS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.