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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:41:00+00:00 2026-06-13T08:41:00+00:00

My app allows a user to edit data, but during save there are two

  • 0

My app allows a user to edit data, but during save there are two things that can happen:

  1. If the name of the data stayed the same, just save the object as an edited version. I.e. they are just editing the existing object.

  2. However, if they have changed the name, this should create a new instance and restore the edited data to the original.

Obviously, 1 is the easy case and is working just fine. But I’m conflicted about the best method to handle 2. How best is it to save a modified NSManagedObject as a new row in the DB?

  • 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-13T08:41:01+00:00Added an answer on June 13, 2026 at 8:41 am

    There is no obvious way to just “copy” a NSManagedObject. The most robust way is to simply recreate everything from scratch.

    Make sure you have all the changed attributes stored separately (here I am assuming they are in various text fields or that they are unchanged from the existing object). You can make this decision (new instance or not) when your editing view controller is dismissed:

    if (![nameTextField.text isEqualToString:object.name]) {
       ObjectClass *newObject = [NSEntityDescription 
           insertNewObjectForEntityForName:@"ObjectClass" 
                    inManagedObjectContext:self.managedObjectContext];
       newObject.name = nameTextField.text;
       newObject.attribute1 = oldObject.attribute1;
       // or
       newObject.attribute1 = attribute1TextField.text;
       // do this for all attributes
       [self.managedObjectContext save:nil]; 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When building a rails app that allows a User to login and create data,
I've got a form that allows the user to edit an employees information: name,
I wrote an app that allows the user to enter data in a UITextField,
For an app that allows user to login in with Facebook, and will support
I am writing an app that allows user to view the list of installed
I have a small tab on an app that allows user to lookup a
I have an app that allows the user to choose an image, at design
I have an app that allows the user to choose a picture from their
I've got an iOS app that allows a user to connect to our server
I'm currently working on an app that allows the user to draw pixelated images

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.