NSXMLParser question
If I am trying to parse multiple xml using NSXMLParser and I try to parse xmls, when my delegate method such as didstartelement, didendelement and foundcharacters is called, how do i know from which NSXMLParser this method is being开发者_StackOverflow中文版 called for?
The first parameter to each of those delegate methods is the parser. That is the instance of NSXMLParser calling that method.
精彩评论