I'm developing an iOS app for a news website, the app gets the content from a URL (JSON).
Every article in the website has a description and in which there might be embedded images. How can I display the embedded HTML images in my UITextView (or maybe UILabel?) ? I have found a class named: RichContentLabel but it isn't compatible with iOS7+. Is there another similar class I could use?
This is a test string with embedded images:
<div> some text here <span> something else</span>
<img src="image source" /> something here too
</div>