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 6991789
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:32:59+00:00 2026-05-27T19:32:59+00:00

How can we can we handle self-closing Tags in NSXmlparser? There is no starting

  • 0

How can we can we handle self-closing Tags in NSXmlparser? There is no
starting element and end element — is it possible to handle the following type of Tags?

<ITEM NAME/>
<REG Number/>
  • 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-05-27T19:33:00+00:00Added an answer on May 27, 2026 at 7:33 pm

    Any XML Parser, including NSXMLParser, should be treating this:

    <ITEMNAME/>
    

    identically to this XML:

    <ITEMNAME></ITEMNAME>
    

    In other words, as far as the parser code you write is concerned, you should see both the start and the end of the element callbacks being invoked by the parser. To prove this out, I put the following sample XML in a file:

    <top>
        <sample1/>
        <sample2 attr1="a"/>
    </top>
    

    I then implemented the following code to load this file and parse it:

    NSURL *sampleURL = [[NSBundle mainBundle] URLForResource:@"sample" withExtension:@"xml"];
    NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:sampleURL];
    [parser setDelegate:self];
    [parser parse];
    

    My parser delegate methods were implemented as follows:

    - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:  (NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
    {
        NSLog(@"Received didStartElement callback for tag: %@", elementName);
    }
    
    
    - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName 
    {
        NSLog(@"Received didEndElement callback for tag: %@", elementName);
    }
    

    When I ran this code I saw the following console output:

    2012-01-01 22:24:24.011 SampleXML[10248:707] Received didStartElement callback for tag: top
    2012-01-01 22:24:24.012 SampleXML[10248:707] Received didStartElement callback for tag: sample1
    2012-01-01 22:24:24.013 SampleXML[10248:707] Received didEndElement callback for tag: sample1
    2012-01-01 22:24:24.013 SampleXML[10248:707] Received didStartElement callback for tag: sample2
    2012-01-01 22:24:24.015 SampleXML[10248:707] Received didEndElement callback for tag: sample2
    2012-01-01 22:24:24.015 SampleXML[10248:707] Received didEndElement callback for tag: top
    

    As you can see, I got both a didStartElement and didEndElement callback for both the sample1 and sample2 tags, which is how it should be working.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a PostgreSQL HA solution that can handle a splitbrain situation gracefully. To
I can handle the process that file part, but before I go crazy, has
DocumentsController#common_query can handle multiple different request styles. i.e. all docs in batch 4 or
Suppose I am designing a class that can handle any database technology to create
I need a c# number something that can handle very large numbers but also
I am looking for a validation framework that can handle the validation of my
I'm looking for a cross-platform database engine that can handle databases up hundreds of
I've got some numbers that is now larger than INT can handle. This is
I am looking for a searchable multiple select javascript widget that can handle filtering
I'd like to write a single JDBC statement that can handle the equivalent of

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.