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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T01:28:35+00:00 2026-06-10T01:28:35+00:00

I want to convert data in to dictionary ,any suggestions..

  • 0

I want to convert data in to dictionary ,any suggestions..

  • 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-10T01:28:36+00:00Added an answer on June 10, 2026 at 1:28 am

    if you are newbie and don’t know how to parse xml to dictionary… try with the below methods…

    in .h file add this methods

    #import <Foundation/Foundation.h>
    
    
    @interface XMLReader : NSObject
    {
        NSMutableArray *dictionaryStack;
        NSMutableString *textInProgress;
        NSError **errorPointer;
    }
    
    + (NSDictionary *)dictionaryForXMLData:(NSData *)data error:(NSError **)errorPointer;
    + (NSDictionary *)dictionaryForXMLString:(NSString *)string error:(NSError **)errorPointer;
    
    @end
    

    and in your .m file parse your URL using these methods.

    NSString *const kXMLReaderTextNodeKey = @"text";
    
    @interface XMLReader (Internal)
    
    - (id)initWithError:(NSError **)error;
    - (NSDictionary *)objectWithData:(NSData *)data;
    
    @end
    
    
    @implementation XMLReader
    
    #pragma mark -
    #pragma mark Public methods
    
    + (NSDictionary *)dictionaryForXMLData:(NSData *)data error:(NSError **)error
    {
        XMLReader *reader = [[XMLReader alloc] initWithError:error];
        NSDictionary *rootDictionary = [reader objectWithData:data];
        [reader release];
        return rootDictionary;
    }
    
    + (NSDictionary *)dictionaryForXMLString:(NSString *)string error:(NSError **)error
    {
        NSData *data = [string dataUsingEncoding:NSUTF8StringEncoding];
        return [XMLReader dictionaryForXMLData:data error:error];
    }
    
    #pragma mark -
    #pragma mark Parsing
    
    - (id)initWithError:(NSError **)error
    {
        if (self = [super init])
        {
            errorPointer = error;
        }
        return self;
    }
    
    - (void)dealloc
    {
        [dictionaryStack release];
        [textInProgress release];
        [super dealloc];
    }
    
    - (NSDictionary *)objectWithData:(NSData *)data
    {
        // Clear out any old data
        [dictionaryStack release];
        [textInProgress release];
    
        dictionaryStack = [[NSMutableArray alloc] init];
        textInProgress = [[NSMutableString alloc] init];
    
        // Initialize the stack with a fresh dictionary
        [dictionaryStack addObject:[NSMutableDictionary dictionary]];
    
        // Parse the XML
        NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];
        parser.delegate = self;
        BOOL success = [parser parse];
    
        // Return the stack's root dictionary on success
        if (success)
        {
            NSDictionary *resultDict = [dictionaryStack objectAtIndex:0];
            return resultDict;
        }
    
        return nil;
    }
    
    #pragma mark -
    #pragma mark NSXMLParserDelegate methods
    
    - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
    {
        // Get the dictionary for the current level in the stack
        NSMutableDictionary *parentDict = [dictionaryStack lastObject];
    
        // Create the child dictionary for the new element, and initilaize it with the attributes
        NSMutableDictionary *childDict = [NSMutableDictionary dictionary];
        [childDict addEntriesFromDictionary:attributeDict];
    
        // If there's already an item for this key, it means we need to create an array
        id existingValue = [parentDict objectForKey:elementName];
        if (existingValue)
        {
            NSMutableArray *array = nil;
            if ([existingValue isKindOfClass:[NSMutableArray class]])
            {
                // The array exists, so use it
                array = (NSMutableArray *) existingValue;
            }
            else
            {
                // Create an array if it doesn't exist
                array = [NSMutableArray array];
                [array addObject:existingValue];
    
                // Replace the child dictionary with an array of children dictionaries
                [parentDict setObject:array forKey:elementName];
            }
    
            // Add the new child dictionary to the array
            [array addObject:childDict];
        }
        else
        {
            // No existing value, so update the dictionary
            [parentDict setObject:childDict forKey:elementName];
        }
    
        // Update the stack
        [dictionaryStack addObject:childDict];
    }
    
    - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
    {
        // Update the parent dict with text info
        NSMutableDictionary *dictInProgress = [dictionaryStack lastObject];
    
        // Set the text property
        if ([textInProgress length] > 0)
        {
            [dictInProgress setObject:textInProgress forKey:kXMLReaderTextNodeKey];
    
            // Reset the text
            [textInProgress release];
            textInProgress = [[NSMutableString alloc] init];
        }
    
        // Pop the current dict
        [dictionaryStack removeLastObject];
    }
    
    - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
    {
        // Build the text value
        [textInProgress appendString:string];
    }
    
    - (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError
    {
        // Set the error pointer to the parser's error object
        *errorPointer = parseError;
    }
    
    @end
    

    I think this would be helpful to you for parsing the xml data.

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

Sidebar

Related Questions

I have a matrix A which I want to convert into a data.frame of
I want to convert XML into binary data in Java? What is the fastest
I want to convert variables into factors using apply() : a <- data.frame(x1 =
I have a data flow with a derived column. I want to convert the
I have taken char data into database into array. now i want to convert
I have a array of two dimensions object[,] data; . I want to convert
I want to convert bitmap data to an image file like jpg or png
I have 1 NSMutableArray and I want to convert whatever data in array will
I'm looking to implement a dictionary data structure in C which I want to
Can I convert Class into Dictionary<string, string>? In Dictionary I want my class properties

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.