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.

How can I such type of Response of XML, using NSXMLParser, I am confused about two "clicks", it will hit, so how to manage flow and save data with one object, help me out,

</campaign_summary_response>

<summary> <clicks>6</clicks>
<conversions>1</conversions>      
<conversion_rate>0.1666666666666666666666666667</conversion_rate>     
<revenue>22.26555000000000</revenue> 
<revenue_converted>22.26555000000000</revenue_converted>     
<currency_symbol>$</currency_symbol>  
<currency_symbol_converted>$</currency_symbol_converted>
</summary>

<campaigns>
<campaign> <offer_id>100</offer_id>
<offer_name>$100 Wendy's Gift Card + Free Frosty</offer_name>     
<campaign_id>1781</campaign_id> <vertical_name>Free Stuff</vertical_name> 
<price_format>CPA</price_format>
<price>0.0000</price> 
<impressions>0</impressions>
<clicks>6</clicks>   
<conversions>1</conversions>
<conversion_rate>0.1666666666666666666</conversion_rate>  
<revenue>15.0000</revenue>
<revenue_converted>22.26555000000000</revenue_converted> 
<epc>2.50000000000000000000000</epc>
<currency_symbol>€</currency_symbol>   
<currency_symbol_converted>$</currency_symbol_converted>
</campaign> </campaigns>

</campaign_summary_response>

How do I code following delegate method

    - (void)parser:(NSXMLParser *)parser 
               didEndElement:(NSString *)elementName
               namespaceURI:(NSString *)namespaceURI 
               qualifiedName:(NSString *)qName {

So that i can save all values in one object and show on display.

share|improve this question

1 Answer

up vote 1 down vote accepted

In didStartElement method.

if([elementName isEqualToString:@"summary"]) summary = YES;
if([elementName isEqualToString:@"campaign"]) campaign = YES;

In didEndElement method.

if(summary) {

    if([elementName isEqualToString:@"revenue"]) // revenue in summary
    if([elementName isEqualToString:@"summary"]) summary = NO;
}

if(campaign) {

    if([elementName isEqualToString:@"revenue"]) // revenue in campaign
    if([elementName isEqualToString:@"campaign"]) campaign = NO;
}
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.