The nsmanagedobjectcontext tag has no wiki summary.
13
votes
5answers
1k views
Undoing Core Data insertions that are performed off the main thread
I'm working on some code that uses an NSOperation to import data. I'd like for the user to be able to undo the NSManagedObject instances that are created during the import operation.
From what I can ...
9
votes
1answer
3k views
Debugging SIGABRT within NSManagedObjectContext -save:
From inside NSManagedObjectContext -save: I am getting this message:
Assertion failed: (_Unwind_SjLj_Resume() can't return), function _Unwind_SjLj_Resume, file ...
8
votes
3answers
3k views
How do I copy or move an NSManagedObject from one context to another?
I have what I assume is a fairly standard setup, with one scratchpad MOC which is never saved (containing a bunch of objects downloaded from the web) and another permanent MOC which persists objects. ...
5
votes
1answer
1k views
iPhone CoreData: How can I track/observe all changes within a subgraph?
I have a NSManagedObjectContext in which I have a number of subclasses of NSManagedObjects such that some are containers for others. What I'd like to do is watch a top-level object to be notified of ...
4
votes
2answers
81 views
Context pattern? Why does Core Data need it?
I'm still fairly new to Core Data and am trying to understand why it requires the passing around of a NSManagedObjectContext. As I understand it, passing the context is needed so that multiple threads ...
4
votes
1answer
606 views
insertNewObjectForEntityForName: inManagedObjectContext: returning NSNumber bug?
I'm relatively well versed in CoreData and have been using it for several years with little or no difficulty. All of a sudden I'm now dumbfounded by an error. For the life of me, I can't figure out ...
4
votes
1answer
1k views
Cross-model relationships in NSManagedObjectModel from merged models?
Is it possible to model relationships between entities that are defined in separate NSManagedObjectModels if the entities are always used within an NSManagedObjectModel that is created by merging the ...
3
votes
2answers
102 views
NSManagedObjectContext confusion
I am learning about CoreData. Obviously, one of the main classes you entouer is NSManagedObjectContext. I am unclear about the exact role of this. From the articles i've read, it seems that you can ...
3
votes
4answers
169 views
Why does Apple documentation that getting ManagedObjectContext from UIApplicationDelegate is bad?
Just curious why ManagedObjectContexts should be passed to UIViewControllers when they are created, rather than just grabbing them from a UIApplicationDelegate?
The docs say that this makes your ...
3
votes
1answer
348 views
NSManagedObject: create on separate thread
I understand that Core Data is not thread safe and that NSManagedObjectContext and NSManagedObjects associated with a context cannot be passed from thread to thread.
Question:
However, if I have a ...
3
votes
2answers
454 views
What could cause mergeChangesFromContextDidSaveNotification not to merge/invalidate objects that have been updated?
[EDIT: simplified version of the question]
mainMOC is the primary managed object context
editorMOC is a managed object context created in editorViewController with an undo manager so the user can ...
3
votes
3answers
449 views
How to properly delete a “temporary” NSManagedObject upon the application quitting
I create a temporary NSManagedObject and associate it with the main NSManagedObjectContext. I need be able to treat it as a fully functioning object (perform fetch requests, etc) inside the context ...
3
votes
2answers
690 views
Core Data and multithreading
I have read Marcus Zarra's chapter on multithreading in his Core Data book and have looked fairly closely at his sample code. But his code and others that I have found elsewhere seem to be focused in ...
3
votes
2answers
262 views
How to create Entity dynamically in Objective-C?
I'm building an iPad application where I need user to create entity dynamically. I'm already having 3 entities which program uses.
Could you help me with code how to do it?
I want to understand the ...
3
votes
1answer
231 views
Core Data Saving to Database not Working
I'm a first time Core Data user/learner for iPhone, I thought that [managedObjectContext save:$error] was used to save changes to the Persistant Store.
But when I reload and call NSFetch, the objects ...
3
votes
1answer
252 views
CoreData: Fetching an Object from an unsaved Context
after I insert a ManagedObject into a context I'd like to fetch it later but before saving the context (I'd save after all objects are inserted). It appears that querying the context later with a ...
3
votes
2answers
338 views
insertNewObjectForEntityForName:inManagedObjectContext: returning NSNumber bug?
I'm relatively well versed in CoreData and have been using it for several years with little or no difficulty. For the life of me, I can't figure out why
...
2
votes
1answer
18 views
Recipes to pass NSManagedObjects amongs UIViewControllers
Within an application it's possible to have different UIViewControllers that need to share the same NSManagedObject. I'm usually do the following:
@interface CustomController : UIViewController
...
2
votes
2answers
32 views
How do I update an annotation without using setCoordinate?
I have a subclassed NSManagedObject that conforms to the MKAnnotation protocol and it has NSNumber properties for latitude and longitude.
When I change any coordinates myself, I use setCoordinate: ...
2
votes
1answer
77 views
Core Data - multi thread - race condition on startup
I have a multi-threaded app that uses Core Data. I've been seeing a lot of crashes on startup, and various bizarre error messages. However, sometimes it works fine! I have never seen a crash on my own ...
2
votes
2answers
146 views
Core Data Undo/Redo - Action depends on what was undone
I have a somewhat complex data model in my iPad application (an OpenGL drawing app), and I'm working on implementing undo/redo functionality. I like the fact that Core Data will undo data model ...
2
votes
1answer
988 views
Core Data merge two Managed Object Context
My Cocoa/Application has a Managed Object Context on the main thread.
When I need to update my data my program will:
Start a new thread
Receive new data from a server
Create a new Managed Object ...
2
votes
4answers
270 views
where to implement Core Data?
I´m completely new to core data programming. i just try to find out where the best place for implementing the core data code would be. i´ve done the apple tutorial Locations and it worked well. now i ...
2
votes
1answer
548 views
Core Data: How to merge inserts/updates/deletes between two NSManagedObjectContext's while maintaining the merge as an undoable step?
I have a document-based Core Data application (running on Mac OS X 10.5 and above) where I'm trying to use two NSManagedObjectContext's on the main thread. I'd like to merge the changes made in the ...
2
votes
2answers
173 views
How can I custom init a UIViewController of Interface Builder with managed context
I`m creating a simple interface with NavigationController and BandListViewController(UITableViewController) inside Interface Builder and setting the delegation to AppDelegate properties.
@interface ...
2
votes
1answer
152 views
Cancelling edits: NSUndoManager or separate NSManagedObjectContext for editing?
I have a View Controller that manages a view which is always shown in editing mode. The view is essentially a table view similar to that of a contact's details in Apple's Contacts app. The model ...
2
votes
1answer
481 views
Changes saved from one NSManagedObjectContext doesn't reflect on main NSManagedObjectContext
I have a main NSManagedObjectContext that it's created in the appDelegate.
Know, I'm using another NSManagedObjectContext for editing/adding new objects without affecting the main ...
2
votes
3answers
638 views
How to remove a core data persistent store
I need to delete my persistent store (doing it object by object is not practical because I have over 100,000 objects). I've tried this:
- (IBAction)resetDatabase:(id)sender {
NSPersistentStore* ...
2
votes
3answers
963 views
Passing a managed object context with a tab controller
Okay, I've tried to figure this out over and over again.
I know the best practice is to have the App Delegate pass the managed object context to the first view controller in an application, and then ...
2
votes
1answer
445 views
iPhone: Cannot access NSManagedObjectContext using appDelegate
I have started with iPhone development sometime back and I am trying to implement core data in my application.
In the process of executing FetchRequest I am stuck at following code...
MYAppDelegate ...
2
votes
2answers
477 views
NSUndoManager, Core Data and selective undo/redo
I'm working on a core data application that has a rather large hierarchy of managed objects similar to a tree.
When a base object is created, it creates a few child objects which in turn create their ...
2
votes
1answer
157 views
How to share an entity between two different core data models
I'm wondering how to share an entity between two different core data models?
For example, I have a "Universe" model which describes a "WorldData" with its "CountryData". And in another hand, I have a ...
2
votes
1answer
357 views
managedObjectContext in Other View
I have finally managed to get core data working and beginning to understand it. So far I have just been playing in a window based app with core data enabled, playing inside the app delegate files.
...
2
votes
1answer
554 views
How do i get rid of '-managedObjectContext' not found in protocol(s)
my app runs on iPhone device and also in simulator. Everythings seems fine, but i see a compiler warning during build. I hate to deliver code thats not completely correct so i need to get rid of this ...
2
votes
1answer
689 views
NSManagedObjectContexts and Multithreading
Let's say we have an app that needs to display a list of places and which runs on 3 Threads:
Main Thread
Main Thread Background Sync (to sync
places with a server)
Geocoding
thread (to geocode ...
2
votes
2answers
263 views
Core Data: Can't Use Previously Saved Object
I am really stuck with these two things.
What I am trying to do:
My entity is simple. It's a "record".
It has a "name (NSString)" and "parent (relationShip)"
"parent" connect to itself, entity ...
2
votes
3answers
579 views
managedObjectContext save fails with error being null
What would cause an error to come back null, this is what I have
+ (BOOL)saveContext:(NSManagedObjectContext *)context
{
NSError *error = nil;
if (![context save:&error])
...
2
votes
3answers
570 views
How to share a ManagedObjectContext when using UITabBarController with inner UINavigationControllers
I have an architectural question. My App uses a TabBarController right in the application window. The ApplicationDelegate creates the managedObjectContext, although it actually doesn't need it.
Each ...
2
votes
2answers
811 views
Why can't I get the context from the delegate with this code?
I get an annoyingly vague error from the following code:
GFree2AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
context = [delegate managedObjectContext];
context is defined as ...
2
votes
1answer
3k views
Crashing on saving a managedObjectContext, with 'NSInvalidArgumentException', but only sporadically
I keep getting crashes from a save: command on a managedObjectContext. It doesn't even fulfill the NSLog statement so I don't see the unresolved error statement, so I can't figure out what the ...
2
votes
3answers
1k views
Add an instance of NSManagedObject to NSManagedObjectContext ok, updating the same instance failed
I am using core data in my iPhone app. I have created a simple class Friend, which derives from NSManagedObject and which uses the following property:
@property (nonatomic, retain) NSString *name;
...
2
votes
1answer
418 views
How to not persist NSManagedObjects retrieved from NSManagedObjectContext
I parse an xml file containing books, for each new node I go:
Book *book = (Book*)[NSEntityDescription insertNewObjectForEntityForName:@"Book" inManagedObjectContext:managedObjectContext];
To ...
1
vote
1answer
16 views
Instruments logging extra living objects
In the initialization of my app, I am reading some data out of a Core Data managed object context. For some reason, even though the executeFetchRequest line of code is called only once, I am seeing 5 ...
1
vote
0answers
15 views
Update managed object context in background thread
On my iPhone I use a managed object context (MOC) in a background thread to synchronize messages from my server with the messages stored in my database. To prevent duplicates I fetch the ids of the ...
1
vote
1answer
21 views
Add temporary coredata entity in a relationship with a non-temporary entity
Lets say i have a fetched result array filled with entities (Entity-A)
All these entities are in a relationship with another EntityB.
There might be some missing Entities in fetchedArray, in which ...
1
vote
1answer
36 views
NSPredicate predicateWithFormat causes exception
Can anyone help me with my the code below. It looks right to me, but the last statement causes an exception. All I'm trying to do is create an NSPredicate to use with an NSFetchRequest.
The "Array" ...
1
vote
2answers
40 views
NSManagedObject with mandatory relationship
Is it possible for a managed object to have a relationship with 'optional' unchecked?
If so, how can I insert it without having validateForInsert: fail?
I want the relationship to be mandatory but I ...
1
vote
2answers
71 views
I got fault when I fetched my data from NSManagedObjectContext
I run my app and then fetched my data. Data is ok. When I run second time I got fault for my old values. What is wrong?
- (BOOL)application:(UIApplication *)application ...
1
vote
1answer
61 views
Updating core data from modal
I'm sure this must be a common pattern in iOS apps. I have a list controller that displays a list of items. I have a segue (using storyboards) to a modal for adding a new item, where I just collect ...
1
vote
0answers
91 views
NSManagedObjectContext has stale data even after reset
I am using CoreData backed by SQLite in my iOS application.
At a certain point in the application, I want to clear all data in the database and start from scratch. I remove my NSPersistentStore from ...