I am using the XML Parser available here: http://www.saygoodnight.com/2009/08/a-simple-quick-reusable-xml-parser-for-the-iphone/
I chose it because I simply couldn't get the regular one to work with my webpage. This one does work however, as in the console I get a result like:
Element: x-position Data: 136 Parent: somepoint
This comes from code like this in my main implementation file:
[thisParser dumpRoot];
My question is, how can I actually access the value 136 somehow? It'd be great if I could just do object.x-position or something, but I'm not sure how that'd work with this class. The full class is available for download at the aforementioned link, and does seem to be a good alternative.
I would really appreciate any help, thank you.