So I have an XML file that looks a little like this
<xml>
<post>
<![CDATA[
THis is the HTML inside of the CData
<br>
I want this to be parsed and displayed in a UITableView
]]>
</post>
<post>
<![CDATA[
<img src="http://foo.com/foo.jpg" />
]]>
</post>
</xml>
I am able to extract the CDATA and assign it to an array. However, I need a simple way to parse it and display it in the UITableView. Just basic stuff such as displaying images.