kiran kumar
kiran kumar

Reputation: 1359

what kind of parser is NSXMLParser

what kind of parser is NSXMLParser.?

Is it dom parser or sax parser.

how many parsers are there?

Upvotes: 2

Views: 3230

Answers (2)

Chris Wenham
Chris Wenham

Reputation: 24017

It's a SAX parser. There are a number of DOM XML parsers available for iOS, and the best guide I've seen is How To Chose The Best XML Parser for your iPhone Project

Upvotes: 6

ceejayoz
ceejayoz

Reputation: 180065

NSXMLParser is a wrapper around libxml2's SAX functions.

Upvotes: 3

Related Questions