I'm trying to parse a XML,
<entry>
<title type="html"><![CDATA[TITLE]]></title>
</entry>
Using Hpple, I'm trying to read the
NSArray *array = [xpathParser searchWithXPathQuery:@"//entry/title[@type='html']"];
But the returned value is null. What I'm doing wrong?