views:

1166

answers:

1

Hi everyone!

I need a powerful HTML parser and manipulator for Objective-C/C, like HTML Agility Pack.

Can anyone tell me some optimal solution? One solution is libxml2, but it seams is not the best.

Thanks in advance!

+2  A: 

On MacOS X, NSXMLDocument is a good solution (but you want iPhone).

Two packages that you should look at are: TouchXML and KissXML.

See also http://stackoverflow.com/questions/406811/iphone-development-xmlparser-vs-libxml2-vs-touchxml.

Paul Lynch
they're not optimized for iphone.
mxg
They work - I actually had some problems with TouchXML when I first tried it, and ended up using KissXML.
Paul Lynch