Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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]);
}
}
share|improve this question
There are many more pieces than this one method. The process is fully detailed here along with example code: developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/… – Rob Napier Feb 20 '12 at 23:17
I didn't post the other pieces because I am getting to the data just fine, but can't seem to access the data within <LIST_BILL_CIM>DATA HERE</LIST_BILL_CIM>. I am seeing all of the element names (which shows LIST_BILL_CIM as one of the element names) though. – TheTC Feb 20 '12 at 23:24
But, thanks for the direction ... checking out those docs now. – TheTC Feb 20 '12 at 23:26
Ah, you're right ... I was missing: - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string – TheTC Feb 20 '12 at 23:34

1 Answer

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string 
{
if(!currentElementValue) {
    currentElementValue = [[NSMutableString alloc] initWithString:string];
}
else 
{
    [currentElementValue appendString:string];
}

}

// Note: don't forget to release or nil currentElement in didEndElement

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.