XML parsing library in Objective-C [duplicate]
Possible Duplicate:
How do I parse an NSString containing XML in Objective-C?
Is there a class library like .net's XMLDocument in objective-c ?
If you're on the Mac, NSXMLDocument is is probably you're looking for.
If you're on iOS however most of the NSXML* classes aren't included. TouchXML shares most of the same interface with the NSXML classes and is meant to act as a replacement for them on iOS. I've had good luck with it in the past.
You can use NSXMLParser to parse XML Documents in objective-c.
精彩评论