Nic Hubbard
Nic Hubbard

Reputation: 42139

NSXMLDocument replacement on iPhone?

I have seen how an NSXMLDocument can parse an html document and provide easy methods for returning parts of the html structure.

Is there a similar method that can be used for the iPhone, as NSXMLDocument is not available?

Upvotes: 0

Views: 1265

Answers (3)

Nick Farina
Nick Farina

Reputation: 4870

You might try this small document class which simply uses NSXMLParser:

https://github.com/nfarina/xmldocument

Upvotes: 0

Archie
Archie

Reputation: 5401

Also see this blog post:

http://notes.bikemonkey.org/post/47351363/googles-nsxmldocument-replacement-for-iphone

Google has written a replacement for some NSXML stuff for iPhone.

Upvotes: -1

Daniel A. White
Daniel A. White

Reputation: 190897

Have you seen TouchXML?

http://code.google.com/p/touchcode/wiki/TouchXML

Upvotes: 2

Related Questions