Sudzc deserializeAsDictionary: over written dictionary
The Sudzc generated code is over writing a dictionary for deserialized nodes. If I use the NSLog(@"The Child Node: %@", [[[element children] objectAtIndex:0] stringValue]); it will write the correct items out each time it passed through. When I try to retrieve the results in code only the last one is available (Jackson 3). What am I doing wrong? // Deserializes the element in a dictionary. +(id)deserializeAsDictionary:(CXMLNode*)element { if([element childCount] == 1) { CXMLNode* child = [[element children] objectAtIndex:0]; if([child kind] == CXMLTextKind) { NSLog(@"The Child Node: %@", [[