Parsing an xml response using NSXml

88 Views Asked by At

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];
    }
}
1

There are 1 best solutions below

2
On

Try this it works for me:

-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI
qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{
    element = elementName;

    if ([element isEqualToString:@"bustime-response"])
    {
        elementFound = YES;

        if (self.item)
            self.item = nil;
        self.item = [[NSMutableDictionary alloc]init];
        if (self.direction)
            self.direction  = nil;
        self.direction =[[NSMutableString alloc]init];
    }
}

-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
    if (elementFound)
    {
        if ([element isEqualToString:@"dir"]){
            string = [string stringByTrimmingCharactersInSet:[NSCharacterSet  whitespaceAndNewlineCharacterSet]];
            [self.direction appendString:string];
        }
        //Add another if with the tag you want to retrieve the data from here
    }
}

-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
    if ([element isEqualToString:@"bustime-response"])
    {
        elementFound = NO;
        // self.receivedDataArray - main array to store all of your dictionary
        [self.receivedDataArray addObject: self.direction];
            [self.receivedDataArray addObject: self.item];
        self.direction = nil;
            self.item = nil;
    }
}

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.