is there a way I can access the CDATA Value in a xml string using KissXML?
My obj-c code:
for(DDXMLElement* itemElement in xmlItems)
{
//get CDATA
}
String looks like this:
<item>
<title></title>
<link></link>
<description><![CDATA[<a href="">Link</a>description<a href="">another link</a> task]]> </description>
</item>