I'm totally new to XML parse, have an XML structure like..
<Chapter name = "chap1">
<pages>one.html</pages>
<pages>two.html</pages>
</Chapter>
Chapter name = "chap2">
<pages>one.html</pages>
<pages>two.html</pages>
</Chapter>
<Chapter name = "chap3">
</Chapter>
I want to take each chapters pages separately... i.e if chapter has pages node i want to say YES else NO. How can i parse..I'm using NSXml
Parser