I trying to parse an xml that has one root element with 2 child elements with the same name. However they keep getting concatenated together. How can i fix this? here is my code so far
-
(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{
element = elementName;
if([element isEqualToString:@"bustime-response"]){
self.item = [[NSMutableDictionary alloc]init];
self.direction =[[NSMutableString alloc]init];
}
}
-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{
if ([element isEqualToString:@"dir"]){
string = [string stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
[self.direction appendString:string];
}
}
Try this it works for me:
As you see you have to add another BOOL variable elementFound and NSMutableArray receivedDataArray for storing all of the data. Give it a go and let me know is it work for you. Remember it's good to add NSLogs for debugging, it helps a lot.