Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7841567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:07:40+00:00 2026-06-02T16:07:40+00:00

I am not able to totally understand the flow of NSXMLParser and the delegate

  • 0

I am not able to totally understand the flow of NSXMLParser and the delegate methods associated to them. Is there any way or any example where a detailed explanation is made how parsing is done using NSXMLParser. I have another XML where i need to store the relevant qno, tin, tout and answer into respective strings after parsing the XMl. PFB the XML.

<?xml version="1.0" encoding="UTF-8"?>
<ParticipantService>   
    <Response> 
        <FileName>CustomerSkillsIntro</FileName>
        <playlist>
            <question answer="t" qno="1" tin="71" title="Greet" tout="73"/>
            <question answer="t" qno="2" tin="74" title="Have Name Tag" tout="77"/>
            <question answer="t" qno="3" tin="78" title="Greet" tout="83"/>
            <question answer="t" qno="4" tin="109" title="Helping Do My Job" tout="112"/>
            <question answer="t" qno="5" tin="131" title="Greet Happily" tout="134"/>
            <question answer="t" qno="6" tin="141" title="Stay cheerful when resident is crabby" tout="144"/>
            <question answer="t" qno="7" tin="151" title="Bond with the new resident" tout="154"/>
            <question answer="t" qno="8" tin="161" title="Welcome cheerfully" tout="164"/>
            <question answer="t" qno="9" tin="169" title="Offer Help" tout="172"/>
            <question answer="t" qno="10" tin="178" title="Help with interest" tout="181"/>
            <question answer="t" qno="11" tin="183" title="Accompany" tout="186"/>
            <question answer="t" qno="12" tin="189" title="Pay attention to 2 resudents" tout="192"/>
            <question answer="t" qno="13" tin="199" title="Juggle the two accurately" tout="202"/>
            <question answer="t" qno="14" tin="207" title="Bring in other help when needed" tout="212"/>
            <question answer="t" qno="15" tin="219" title="Correct response I can ask" tout="222"/>
            <question answer="t" qno="16" tin="231" title="Be charming" tout="237"/>
            <question answer="t" qno="17" tin="247" title="Respond and delegate" tout="250"/>
            <question answer="t" qno="18" tin="261" title="Apologize" tout="263"/>
            <question answer="t" qno="19" tin="266" title="Offer activities" tout="270"/>
            <question answer="t" qno="20" tin="273" title="Be sensitive to needs" tout="276"/>
            <question answer="t" qno="21" tin="287" title="Offer anything you need" tout="290"/>
            <question answer="t" qno="22" tin="311" title="Take off shoes, honor unusual request" tout="315"/>
            <question answer="t" qno="23" tin="328" title="Always available menu explained" tout="331"/>
            <question answer="t" qno="24" tin="333" title="Willing to stay beyond shift" tout="336"/>
            <question answer="t" qno="25" tin="377" title="Explain policy" tout="380"/>
            <question answer="t" qno="26" tin="390" title="Understand resident" tout="396"/>
        </playlist>
        <path>lmsstaging.2xprime.com</path>
        <EncodedVideoURL>HTTP://lmsstaging.2xprime.com/test/vdos/Alzheimers.mp4</EncodedVideoURL>
    </Response>
    <RequestStatus> 
        <Code>1</Code>
        <Status>SUCCESS</Status> 
        <Message/>   
    </RequestStatus> 
</ParticipantService>

Can someone please explain me how to parse this XML and a detailed explanation about how NSXMLParser and the delegate methods work?? I want to store the “tin” and “tout” into an NSArray but i am not able to understand on how to parse it node by node. This would be very helpful.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T16:07:40+00:00Added an answer on June 2, 2026 at 4:07 pm

    Couple of delegate methods are present for NSXML Parser-

    -(BOOL) parse:(NSData *)xmlData 
    
    -(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict 
    
    - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
    
    - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
    

    You can use following line of code in your case in method didStartElement-

    if([elementName isEqualToString:@"question"]) {
        NSString *answer = [attributeDict valueForKey:@"answer"];
        NSString *qno = [attributeDict valueForKey:@"qno"];
        NSString *tin = [attributeDict valueForKey:@"tin"];
        NSString *title = [attributeDict valueForKey:@"title"];
    
       // Now You can store these in your preferable data models - data objects/array/dictionary
    }
    

    EDIT –

    @interface Question : NSObject
    
    @property (nonatomic, retain) NSString *answer;
    @property (nonatomic, retain) NSString *qno;
    @property (nonatomic, retain) NSString *tin;
    @property (nonatomic, retain) NSString *title;
    
    @end
    
    @implementation Question
    
    @synthesize answer = _answer;
    @synthesize qno = _qno;
    @synthesize tin = _tin;
    @synthesize title = _title;
    
    - (void) dealloc {
        self.answer = nil;
        self.qno = nil;
        self.tin = nil;
        self.title = nil;
    
        [super dealloc];         
    }
    @end
    

    Now in your didStartElement method –

    NSMutableArray *questionsArray = [NSMutableArray array];
    if([elementName isEqualToString:@"question"]) {
        Question *questionObject = [[Question alloc] init];
        questionObject.answer = [attributeDict valueForKey:@"answer"];
        questionObject.answerqno = [attributeDict valueForKey:@"qno"];
        questionObject.answertin = [attributeDict valueForKey:@"tin"];
        questionObject.answertitle = [attributeDict valueForKey:@"title"];
    
        [questionsArray addObject:questionObject];
        [questionObject release];
    }
    

    You can create this array at class level and use where you want.

    EDIT 2 – To extract the data from array-

    //Suppose dataArray contains information - 
    for (int i = 0; i < [dataArray count]; i++) {
        Question *obj = [dataArray objectAtIndex:i];
        NSLog(@"%@",obj.answer);
        NSLog(@"%@",obj.qno);
        NSLog(@"%@",obj.tin);
        NSLog(@"%@",obj.title);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not able to flush stdin here, is there a way to flush
This question may be redundant, but i could not totally understand how to do
Im not able to load the page with circlepageindicator. This is the xml <FrameLayout
I'm not able to assign a generic list to ViewBag. Here is my code:
I am not able to put proper title for this question, but i will
I am not able to exactly difference between kernel logical address and virtual address.
I am not able to access localhost https pages in firefox3. It gave the
I am not able to use the breakpoint in Studio with Javascript. I'm able
Why are we not able to override an instance variable of a super class
I am not able to make a clear decision on this one. I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.