I have been developing a fairly simple app for iOS and Android that parses local xml in order to form lists of items and show information about them. When looking into my parsing options, I settled on the native SAX parser for android, as well as the NSXMLparser class that is built in to objective-C. When looking at my options, I repeatedly saw people saying that DOM parsers are not suitable for large xml files. However, no one ever defined exactly what "large" meant. In a later version of the app, I am thinking about switching to a DOM parser.I have been developing a fairly simple app for