Often in iPhone projects I’ve needed to parse XML documents from the internet.
I want the data to be processed and shown to the user as quickly as possible.
If the file is large I don’t want to have to store the entire contents in memory.
Using NSXMLParsers initWithURL: method the xml file is downloaded synchronously with NSURLConnection before parsing. If [...]