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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:13:08+00:00 2026-06-02T14:13:08+00:00

How can I map the nested json below with RestKit RKObjectMapping? I only need

  • 0

How can I map the nested json below with RestKit RKObjectMapping? I only need to map the “data”. My current code below returns (null) – Thanks!

{

    "sucess": true,
    "error": {
        "code": "",
        "message": ""
    },
    "data": [
        {
            "id": 1,
            "name": "Salad",
            "description": "Salad Desc",
            "category_id": 1
        },
        {
            "id": 2,
            "name": "Soup",
            "description": "Soup Desc",
            "category_id": 1
        },
        {
            "id": 3,
            "name": "Wrap",
            "description": "Wrap Desc",
            "category_id": 1
        },
        {
            "id": 4,
            "name": "Appetizers",
            "description": "Appetizers Desc",
            "category_id": 1
        }
    ]

} 

Class

@interface Subcategory : NSObject    
    @property (nonatomic, retain) NSNumber *subcategoryID;
    @property (nonatomic, retain) NSNumber *categoryID;
    @property (nonatomic, retain) NSString *name;
    @property (nonatomic, retain) NSString *description;
    @property (nonatomic, retain) NSString *thumbnail;
    @property (nonatomic, retain) NSArray *data;

ViewController

RKObjectMapping* mapping = [RKObjectMapping mappingForClass:[Subcategory class]];

RKObjectMapping* dataMapping = [RKObjectMapping mappingForClass:[Subcategory class]];
[dataMapping mapKeyPath:@"id" toAttribute:@"subcategoryID"];
[dataMapping mapKeyPath:@"category_id" toAttribute:@"categoryID"];
[dataMapping mapAttributes:@"name", @"description", nil];

[mapping mapKeyPath:@"data" toRelationship:@"data" withMapping:dataMapping];

[[RKObjectManager sharedManager] loadObjectsAtResourcePath:[NSString stringWith
  • 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-02T14:13:12+00:00Added an answer on June 2, 2026 at 2:13 pm

    You are missing the rootKeyPath and also setting the mapping in the provider:

    RKObjectMapping* mapping = [RKObjectMapping mappingForClass:[Subcategory class]];    
    RKObjectMapping* dataMapping = [RKObjectMapping mappingForClass:[Subcategory class]];
    [dataMapping mapKeyPath:@"id" toAttribute:@"subcategoryID"];
    [dataMapping mapKeyPath:@"category_id" toAttribute:@"categoryID"];
    [dataMapping mapAttributes:@"name", @"description", nil];
    dataMapping.rootKeyPath = @"data"; //this is what you were missing    
    //get your  mapping provider (i'm not sure if you already have on declared)
    [mappingProvider setObjectMapping:dataMapping forResourcePathPattern:@"/somepath/toservice/"];
    [[RKObjectManager sharedManager] loadObjectsAtResourcePath:@"/somepath/toservice/"];
    

    Here’s more info to answer your question about getting to the other elements (for example ‘error’):

    - (void)objectLoader:(RKObjectLoader *)objectLoader didFailWithError:(NSError *)error {
        NSError *parseError = nil;
        id response = [objectLoader.response parsedBody:&parseError];
        DLog(@"response %@", response);    
        if (!parseError) {
            NSString *errorMessage = [[response valueForKey:@"error"] valueForKey:@"message"];     
            //do something with it    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code which I use to map a nested list in
I have a nested resource in my routes.rb like this: map.resources :users, :only =>
How I can map a service running on a specific port number to an
I'm looking for a tool that can map the relationships in my database in
Is it expected behavior that two encodings can map to the same decoding? I'm
Can I map the identity of an entity to a column whose values are
Can Automapper map values from a NameValueCollection onto an object, where target.Foo receives the
How can I map Open Recent, or open last file to a keyboard shortcut?
How can i map a date from a java object to a database with
How can I map the value of an object collection using fluent mapping? I

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.