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

  • Home
  • SEARCH
  • 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 783835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:36:48+00:00 2026-05-14T20:36:48+00:00

what is the best way to load a xml file as an parsed object

  • 0

what is the best way to load a xml file as an parsed object in objective c?

  • 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-14T20:36:49+00:00Added an answer on May 14, 2026 at 8:36 pm

    Check out TouchXML. It’s the easiest library I’ve found so far. Supports xpath on a basic level. http://code.google.com/p/touchcode/wiki/TouchXML. Here’s a sample (code removed) from a recent project:

    CXMLDocument *parser = [[CXMLDocument alloc] initWithData:theData encoding:NSUTF8StringEncoding options:0 error:nil];
    NSArray *nodes = [parser nodesForXPath:@"//item" error:nil];
    
    for (CXMLElement *resultElement in nodes)
    {
        NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithCapacity:0];
    
        // Create a counter variable as type "int"
        int counter;
    
        // Loop through the children of the current node and add to dictionary
        for (counter = 0; counter < [resultElement childCount]; counter++)
        {
            // Add each field to the dictionary with the node name as
            // key and node value as the value
            [data setObject:[[resultElement childAtIndex:counter] stringValue]
                     forKey:[[resultElement childAtIndex:counter] name]];
        }
    
        // do stuff with the dictionary by named keys
        // ...
    
        // release dict
        [data release];
    }
    
    [parser release];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

string path = Path.GetDirectoryName( Assembly.GetAssembly(typeof(MyClass)).CodeBase); output: file:\d:\learning\cs\test\test.xml What's the best way to return only
What is the best way to open an existing xml file and append a
Working with the OpenSSL library in c, what is the best way to load
I'm wondering what the best way is to use the XDocument.load and save methods
I have an xml file that I need to load. This xml file holds
What is the best way to store XML data used in a program ?
I'm trying to decide on the best way to load in some configuration settings.
What is the best way to store data gathered from a flash file, and
What is the best way to load seed (initial or test) data into grails
I want to load data from an XML file and assign that data to

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.