Problem 1: Has anyone worked with TouchXML, I am facing problem parcing rssfeed that has characters like & or even & The parser takes the url as input and doesn’t seem to parse the XML content. NSXMLParser has no such problem for the same feed URL. Problem 2: Another problem with NSXMLParse is when the foundCharacter() method finds “\n” even the call like if([currentElementValue isEqualToString:@"\n"]) return;
currentElementValue = [currentElementValue stringByReplacingOccurrencesOfString:@"\n" withString:@""];
both these lines doesn’t seem to eliminate the \n character.
Any help guys ?