I am trying to parse this custom XML file with NSXMLParser. I'm new to parsing XML, so I apologize if this is a simple question. But, here is a sample of this XML file:
<recordset>
<record>
<LIST_BILL_CIM>05645458</LIST_BILL_CIM>
<BILLPRINT_LVL_CIM>05645458</BILLPRINT_LVL_CIM>
<OWNING_CARRIER>FE</OWNING_CARRIER>
</record>
</recordset>
Here is the method that's doing the parsing. I'm able to see the elementName, but unsure how to access the data. Any help is appreciated! Thanks!
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{
if ([elementName isEqualToString:@"LIST_BILL_CIM"]) {
NSLog(@"LIST_BILL_CIM = %@", [attributeDict objectForKey:0]);
}
}