An NSManagedObjectContext is a scratchpad of sorts. This is where you make all of your changes to your persistent objects before saving them back to the store.
0
votes
1answer
28 views
Full Example Of Implementing Notifications For Core Data NSManagedObject
Could somebody point me in the correct direction for a full implementation example of NSManagedObjectContextObjectsDidChangeNotification
NSManagedObjectContextDidSaveNotification
and
...
1
vote
0answers
24 views
AFIncrementalStore context vs MagicalRecord MR_contextForCurrentThread
I am trying to use AFIncrementalStore together with MagicalRecord.
I have a class Beer with few properties (from BreweryDB web service). To fetch beers I am using [Beer MR_fetchAllWithDelegate:self] ...
0
votes
1answer
49 views
Core Data context and singleton data controller
I have a singleton data controller to hold an array of objects. See for example bananas question for my solution: singelton dataController banansArray
Now I want to save the array of bananas to ...
1
vote
1answer
41 views
Core Data: Fetch objects from multiple ManagedObjectContexts
My iPad App is using throw-away child ManagedObjectContexts for editable ViewControllers, so I can easily discard the edited data.
Now I want to show a list of all objects in an overlay view, ...
1
vote
0answers
28 views
Magical Record create/fetch entity in separate thread
I have a bunch of NSOperations that need to create and fetch entities while running in a queue.
When creating entities in the NSOperations can I simply create using the default context, or since I ...
0
votes
0answers
54 views
Why is my app not crashing when same managed object context is used in different threads?
I m trying to create a sample app with multi-threading and core data which is either suppose to crash or be in a deadlock.
I have created a concurrent queue and using a for loop call dispatch_async ...
0
votes
1answer
21 views
NSManagedObjectContextObjectsDidChangeNotification deleted objects issue
It appears as though I've exposed a strange issue where my deleted objects are not actually deleted. This only occurs when I'm responding to theNSManagedObjectContextObjectsDidChangeNotification.
...
0
votes
2answers
64 views
Context does not save the changes with error 1550
I'm trying to update an entity and save the changes. I'm getting always the following error:
The operation couldn’t be completed. (Cocoa error 1550.)
Method:
- (BOOL) ...
0
votes
1answer
35 views
Reload UITableView data every time context changes?
I have a UITableViewController that's a subclass of CoreDataTableViewController (it's the Stanford class). That implements a fetchedResultsController.
Now, in my viewWillAppear, I have this:
- ...
0
votes
1answer
33 views
iOS NSManagedObjectContext - is it possible to get or send a notification when all changes is saved?
I use Core Data - and I have registered and is listening for NSManagedObjectContextDidSaveNotification:s I have a collection of data (from JSON), that I want to save, and after all objects is saved, I ...
3
votes
1answer
72 views
NSManagedObjectContext in inconsistent state after mergeChangesFromContextDidSaveNotification in background context
I'm experiencing some strange behaviour in CoreData that causes one of my MOCs to end up in an inconsistent state. I've replicated the issue in a small sample project
Here is a basic rundown of my ...
0
votes
1answer
77 views
Core Data: NSManagedObjectContext Not Saved / Fetch Request Fails Until App Quits & Relaunches
I've got a Core Data backend that's exhibiting some strange behavior. The first time I run my app (in the simulator) my NSFetchRequest will never find matches even when given identical items multiple ...
0
votes
1answer
23 views
CoreData NSManagingContextDidSaveChangesNotification saves empty object iOS5
Before anyone suggests, we are using one managedObjectContext for [context save:&error];
We are saving a new object in Core Data with iOS5.
The issue is, the first time we save a new object, ...
1
vote
0answers
52 views
CoreData sync between NSManagedObjectContexts
I'm working at an app similar to pinterest where i have a huge list of personal books. This books are stored in core data and i'm using a NSManagedObjectContext to work and fetch them.
Another part ...
0
votes
1answer
39 views
EXC-BAD-ACCESS when setting a relationship between two objects
Can anyone explain why given the following MagicalRecord import code
__block NSManagedObject *importedObject = nil;
[MagicalRecord saveWithBlockAndWait:^(NSManagedObjectContext *localContext) {
id ...
0
votes
1answer
25 views
is there a way to clear -changedValues for only certain NSMangedObjects in Core Data?
my problem is about coordinating core data's awareness of changes in objects (including relationships) with posting this updates to a server.
For example:
Say I have a managed object with 2 to-many ...
0
votes
1answer
37 views
create entity in child NSManagedObjectContext with relationship to parent entity
I am creating temp context for edit entity:
NSManagedObjectContext *parent = [Default managedObjectContext];//my main managed context
NSManagedObjectContext *_createNewContex = ...
1
vote
1answer
31 views
How to handle saving on child context but the objected is already deleted in parent context?
I have core data nested contexts setup. Main queue context for UI and saving to SQLite persistent store. Private queue context for syncing data with the web service.
My problem is the syncing process ...
0
votes
1answer
46 views
Does NSManagedObjectContext's mergeChangesFromContextDidSaveNotification: post NSManagedObjectContextDidSaveNotification?
I have a bunch of NSOperations with their own NSManagedObjectContexts making changes to my Core Data store and saving and successfully getting their changes into the main thread's ...
0
votes
1answer
68 views
Core Data: Null Array when retrieving Data Base objects
I have nine Aviso elements in a NSMutableArray and I am theoretically storing these nine elements in the Core Data of my application. The problem is that when trying to retrieve from the data base ...
0
votes
1answer
56 views
Core Data Single Managed Object Context and two threads
I am going crazy trying to figure this out. I am working on an application that is syncing up data from the webserver. There is a background thread that is pulling data from the server to the ...
0
votes
2answers
37 views
cant connect my managedObjectContext from my view to my Delegate
i'm using core data on my app and i know i need to connect my managedObjectContext throw the Delegate but i don't know how...
i have a delegate-
AppDelegate.h
#import <UIKit/UIKit.h>
...
0
votes
1answer
27 views
Error while dealloc NSManagedObjectContext of the view controller for adding scene, but ok for edit scene
I have two controllers, one is called as AddressesController
@interface AddressesController : UITableViewController<ManageAddressDelegate>
@property(nonatomic, strong) ...
0
votes
1answer
64 views
Save multiple attributes to same core data entity
I am first time user of core data and trying to learn the core data.
For start with employee example with two attributes.
1. name
2. salary
Now I done all necessary things needed for loading ...
0
votes
1answer
43 views
Where to create a NSManagedObjectContext for an NSInvocationOperation
I have multiple NSInvocationOperations created and added to an NSOperationQueue. Two of these
NSInvocationOperations create lots of objects of the same parent class (Country and City which subclass ...
0
votes
0answers
50 views
Core Data ManagedObject - Can't set attribute value
I'm having issues writing values to an attribute in a Core Data managed object. Can anyone tell me what I'm doing wrong here.. PSNDataSync is a singleton that I'm using to pass my managed object ...
2
votes
1answer
129 views
CoreData deadlock with multiple threads
I'm experiencing the same deadlock issue (that is quite common on SO) that occurs in the multiple NSManagedObjectContexts & multiple threads scenario. In some of my view controllers, my app uses ...
0
votes
0answers
61 views
CoreData update entity not working [closed]
I am having trouble with the updating of a single entry in a coredata database.
I am fetching the object of type Object completely and hold it in an array of my dataHandler:
dataHandler.someArray = ...
0
votes
2answers
83 views
NSManagedObjectContext's Save method performance
I'm optimising my first iOS app before it hits the store, and noting methods which take seemingly larger amounts of time. I have a fairly simple master-detail app where entities from the Core Data ...
0
votes
1answer
62 views
CoreData - One side of relationship is always nil
I have a CoreData project where there are two related entities (Users and Studies), these entities have a one-to-many relationship to another entity (UserStudy) which has a one-to-one relationship to ...
3
votes
3answers
69 views
Using NSManagedObject subclasses to transport persistent and non persistent data
I'm having some thoughts on how to use some core data's NSManagedObject subclasses to handle persistent data and non persistent data.
Let's say you have a recipe app displaying a list of your own ...
0
votes
3answers
113 views
Executing Core Data saving on a background thread?
I've got a button which marks a selected entry in a Core Data SQLite as a "Favourite", meaning I'm just flipping a BOOL for that index from off to on.
Currently, when I do this, I call save on the ...
0
votes
1answer
23 views
Permanent Object ID for NSManagedObject with parents
After save, objectID will be permanent.
However, what about if the managedObjectContext has parent and that parent hasn't save. Will the object ID be permanent?
0
votes
2answers
22 views
coredata- relationship failing to behave properly
This is structure of coredata architecture.
After adding entries to 'Artists', using them to newly added 'Album' entries is working perfect.
But the problem is as shown in img- 2 & 3, after ...
0
votes
1answer
58 views
Use block with NSManagedObjectContext [duplicate]
Please help on how to use block with NSManagedObjectContext. I am trying to asynchronously download several images for one entity. The data structure I have is more or less like the following (this is ...
0
votes
1answer
22 views
is concurrently enumerating managed object in core data thread-safe
I need to update a value for each arranged object in Core Data, and I am currently using a loop. But I want to know if the following code is thread-safe or not, and why.
ManagedObjectContext is not ...
0
votes
1answer
41 views
Why does an unsaved managedObject lose its managedObjectContext
Currently, I am developing an app to book cars. All booking related data are stored in an entity 'Bookings'. As some attributes of 'Bookings' or relationships between 'Bookings' and other enties are ...
0
votes
1answer
58 views
Confusion when using multiple NSManagedObjectContexts with Relationships
I'm using four NSManagedObjectContexts to manage the insertion and deletion of data retrieved from a source stored on a server. The relationships between the MOC's have been set as follows.
...
0
votes
0answers
50 views
managedObjectContext not ready for first ViewController
I am using CoreData and although i am instantiating my managedObjectContext in AppDelegate's "willFinishLaunchingWithOptions", when my first ViewController loads it is not ready and my app crashes.
...
0
votes
1answer
33 views
0
votes
1answer
60 views
Parent NSManagedObjectContext has no changes after child is saved, but only in release mode (works in debug mode)
My setup:
An NSManagedObjectContext with type NSPrivateQueueConcurrencyType that is connected to my NSPersistentStoreCoordinator
An NSManagedObjectContext with type NSMainQueueConcurrencyType that ...
0
votes
1answer
70 views
Core Data relationship not saving even though it is set
I have a mandatory genericCall relationship for a PlaylistCall entity that is being set prior to the PlaylistCall being saved. The logs show that the genericCall is not nil and yet I get a validation ...
0
votes
1answer
86 views
Understanding use of NSManagedObjectContext in Core Data
i think i am not bad at creating code to DO STUFF. But i am terrible at storing my variables and persistent data. I am using ARC and storyboards (thinking about ditching the storyboards since they ...
1
vote
1answer
284 views
iOS RestKit can not save local entity to database
I am using RestKit 0.20 to parse JSON data and save to database.
THere is a mapped entity SchoolClass, which is handled by RestKit and saves fine.
I have another entity called MyClass, which stores ...
0
votes
1answer
53 views
How to run simultaneous searches in core-data?
I am trying to understand how to run simultaneous searches in core-data.
Here is my example, but it doesn't work, because one of the GCDs seems to never activate
If I leave the custon MOC in there I ...
0
votes
0answers
47 views
Only NSFetchedResultsChangeInsert gets fired when merging changes from background managed object context to main thread
I am using NSFetchedResultsController to populate a UITableView on the main thread. A background thread with its own managed object context keeps importing data periodically. The changes from the ...
0
votes
1answer
101 views
What is the difference between managed object context save and refreshObject:mergeChanges:
Hello what's the difference between
[self.context refreshObject:site mergeChanges:YES];
and
[self.context save:nil];
Sometimes I use them both, sometimes I use only save. It works in both ...
0
votes
2answers
72 views
How to create a NSManagedObjectContext with a non nil parentContext?
How do you create a NSManagedObjectContext that has a non nil parentContext that runs on a different queue/thread?
UIManagedDocument's managedObjectContext does have this, but I don't know how to ...
0
votes
1answer
58 views
coredata-MO modification reflecting for each existing records in PS
I found many tutorials & articles over internet for core data but I am making sample app that is realtime & more useful to beginner. You can find the sample code here.
The core data structure ...
0
votes
1answer
35 views
Duplicate copies of NSManagedObjects
I have a number of View Controllers that need to show data from a Core-Data store.
Each of them fetch managed objects from the same context but for some reason the number of managed objects increases ...



