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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:12:27+00:00 2026-06-08T04:12:27+00:00

I have a Core Data model which works well importing and exporting data. The

  • 0

I have a Core Data model which works well importing and exporting data. The way my app works is that it downloads a JSON file from the database, parses it, flushes out the core data model, then adds the data again (effectively a refresh of the local data model).

If I make a change to the database, the change is reflected in the JSON file, but is not reflected in the core data model until I restart (aka end the app, open again) the app.

Im sure it must be something to do with the way I am flushing out the database, but I just can’t put my finger on it. I’ve included some code below to help.

The method I’m using to flush out the data model:

- (void)resetCoreData;
{    
    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"AppWithCoreData.sqlite"];

    NSFileManager *fileManager = [NSFileManager defaultManager];

    [fileManager removeItemAtURL:storeURL error:NULL];

    NSError* error = nil;

    if([fileManager fileExistsAtPath:[NSString stringWithContentsOfURL:storeURL encoding:NSASCIIStringEncoding error:&error]])
    {
        [fileManager removeItemAtURL:storeURL error:nil];
    }

    persistentStoreCoordinator = nil;
    managedObjectContext = nil;

    [self managedObjectContext]; // Rebuild Object Context    
}

One line of the code I’m using to add the data to the data model:

[model setValue:[dictionary objectForKey:@"eventID"] forKey:@"eventID"];
  • 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-08T04:12:29+00:00Added an answer on June 8, 2026 at 4:12 am

    Usually when you need to save your changes to your core data store you need to save them.

    To achieve it you need to call

    NSError* error = nil;
    [managedObjectContext save:&error];
    

    In this manner changes you have performed are saved to disk. In fact when you simply change, for example, the value of an attribute on a specific entity, it’s only available in memory.

    I suppose the changes are available only at the next restart since in your app delegate you listen for applicationWillTerminate delegate and there you save the context. Are you using the Core Data Stack provided with Xcode template?

    If possible provide more details, maybe I could help you.

    Hope that helps.

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

Sidebar

Related Questions

I have several Core Data model version that I have added to my .xcdatamodeld
In my core data model I have a Person entity that has a to
I have set up a Core Data model that includes an entity, Item with
I am using Core Data for my app and I have a model Reservation
I have started creating an app which uses a core data stack at the
I have a Core Data model in which a Task entity includes an optional
Environment: xcode 3.2.1, document-based core-data application. I have a document-based cocoa app which uses
I have core data model with two entities that have a many-to-many relationship with
I have a core data model with an entity called clients that is made
I've got a document based App using Core Data, and have a tableView which

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.