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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:12:37+00:00 2026-05-15T04:12:37+00:00

I have a managed object (A) that contains various attributes and types of relationships,

  • 0

I have a managed object (“A”) that contains various attributes and types of relationships, and its relationships also have their own attributes & relationships. What I would like to do is to “copy” or “duplicate” the entire object graph rooted at object “A”, and thus creating a new object “B” that is very similar to “A”.

To be more specific, none of the relationships contained by “B” (or its children) should point to objects related to “A”. There should be an entirely new object graph with similar relationships intact, and all objects having the same attributes, but of course different id’s.

There is the obvious manual way to do this, but I was hoping to learn of a simpler means of doing so which was not totally apparent from the Core Data documentation.

TIA!

  • 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-15T04:12:38+00:00Added an answer on May 15, 2026 at 4:12 am

    Here’s a class I created to perform a “deep copy” of managed objects: attributes and relationships. Note that this does not check against loops in the object graph. (Thanks Jaanus for the starting off point…)

    @interface ManagedObjectCloner : NSObject {
    }
    +(NSManagedObject *)clone:(NSManagedObject *)source inContext:(NSManagedObjectContext *)context;
    @end
    
    @implementation ManagedObjectCloner
    
    +(NSManagedObject *) clone:(NSManagedObject *)source inContext:(NSManagedObjectContext *)context{
        NSString *entityName = [[source entity] name];
    
        //create new object in data store
        NSManagedObject *cloned = [NSEntityDescription
                                   insertNewObjectForEntityForName:entityName
                                   inManagedObjectContext:context];
    
        //loop through all attributes and assign then to the clone
        NSDictionary *attributes = [[NSEntityDescription
                                     entityForName:entityName
                                     inManagedObjectContext:context] attributesByName];
    
        for (NSString *attr in attributes) {
            [cloned setValue:[source valueForKey:attr] forKey:attr];
        }
    
        //Loop through all relationships, and clone them.
        NSDictionary *relationships = [[NSEntityDescription
                                       entityForName:entityName
                                       inManagedObjectContext:context] relationshipsByName];
        for (NSRelationshipDescription *rel in relationships){
            NSString *keyName = [NSString stringWithFormat:@"%@",rel];
            //get a set of all objects in the relationship
            NSMutableSet *sourceSet = [source mutableSetValueForKey:keyName];
            NSMutableSet *clonedSet = [cloned mutableSetValueForKey:keyName];
            NSEnumerator *e = [sourceSet objectEnumerator];
            NSManagedObject *relatedObject;
            while ( relatedObject = [e nextObject]){
                //Clone it, and add clone to set
                NSManagedObject *clonedRelatedObject = [ManagedObjectCloner clone:relatedObject 
                                                              inContext:context];
                [clonedSet addObject:clonedRelatedObject];
            }
    
        }
    
        return cloned;
    }
    
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a managed Object Model that contains 2 Entities. One of the entities
I have a native object (C++) that has a gcroot pointer to a managed
I have managed objects that have image properties. Since storing large blobs in CoreData
In an embedded program I have a screen object that needs to manage a
Good day, I have created an object that will manage data access. My app
I have a managed object which acts as a playlist, it has a to-many
Background: I have a managed object, Car. I have a RESTful search API sitting
I have a core data UITableView, the core data managed object has 4 properties
I have a fairly involved managed data model which has a central object with
I have a tree-like object, managed by Hibernate. The object has a list 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.