0
votes
0answers
27 views

Deleting won't nullify until save : is it true?

My situation : I have complex (24 entities, many relationships and many ordered to-many relationships) model in Core Data. Now let's say, I have an entity PlayList and an entity Song, and in ...
2
votes
1answer
34 views

Is it possible to bind a `NSTextfield` to only one particular entry in a NSArray or NSSet/ Relationship

Is it possible to bind a NSTextfield to only one particular entry in a NSArray or NSSet/ Relationship. I can see the possibility of binding to an NSArrayController using the Control Key of ...
1
vote
2answers
48 views

NSNumber, what to be aware of when using and storing different primitive types

An NSNumber can store different primitive types, like short, int, long, long long, float, double But does the size change, when i do @(long long) in comparison to @(int) By modeling the ...
0
votes
0answers
20 views

Fetch update in Cocoa

this is the code in my AppDelegate.m: -(IBAction)fetch:(id)sender{ NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; NSEntityDescription *entity = [NSEntityDescription ...
0
votes
0answers
15 views

NSManagedObjectID -description when using custom referenceObject class (from NSIncrementalStore)

I have an NSIncrementalStore that uses a custom class for the referenceObjects that it passes into NSManagedObjectIDs. I made the class ready for use as a key (conformed to NSCopying, overrode -hash ...
1
vote
2answers
44 views

How to release a NSManagedObject object?

How to release a NSManagedObject object? When I deleted an object(NSManagedObject) in NSManagedObjectContext using - deleteObject: and than perform save action, But I do not see, It's released. DO I ...
0
votes
2answers
26 views

core data child/parent save exception

I got crash (probably while parent moc saved: this is how moc's created (parent): if (_managedObjectContextInMemoryForDynamicInformation) return ...
0
votes
0answers
20 views

NSTableview and core data selection / selectionIndex. incorrect index using nsbutton. action invocation

I have the standard NSTableView backed by an array of managed objects. All controlled by NSArrayController. A button was added in one column and linked to an IBOutlet method. If the user 'clicks' on ...
0
votes
0answers
14 views

how to update shared core data store between apps?

My Usecase: For an automatic export running once in a while I build an HelperApp, while the configuration of still is made in the MainApp. My Setup: MainApp (writes data) HelperApp (mostly ...
0
votes
0answers
14 views

Create group rows in NSTableView using CoreData backed NSArrayController

Say I have a bunch of Article objects stored within the core data model. Each article maintains, a reading progress attribute which denotes how much of the article has been read by the user. Once the ...
1
vote
2answers
40 views

Observing changes in the properties of an NSManagedObject: how to avoid looping?

In my application, I observe the properties of a managed object. A change may lead to adjustments in some of its other properties, so the managed object itself receives a message of a changed ...
0
votes
1answer
22 views

Why an infinite loop with: while ( [managedObjectContext hasChanges] ) [managedObjectContext processPendingChanges]

Should the following while statement not exit after a maximum of one execution? while ( [self.managedObjectContext hasChanges] ) [self.managedObjectContext processPendingChanges];
0
votes
0answers
35 views

Cocoa Core Data Document Based Application underlying or read/write file type

I am writing a data editor tool for some of our mobile apps. Right now, I'm setting it up as a Document-based Core Data application. We're going to want to save the data as plain JSON or XML for ...
0
votes
1answer
26 views

the programmatic equivalent of binding an nsarraycontroller to a nsobjectcontroller, selection, content

i've split up my UI into various nib files. now, i use two nswindowcontroller subclasses with nsarraycontroller and nsobjectcontroller IBOutlets. The nwwindowcontrollers are the File's Owner in their ...
0
votes
1answer
45 views

in memory mergeChangesFromContextDidSaveNotification and save memory leak

I has some increasing in memory size of my application (osx 10.8.3) when i'm using in memory type nsmanagedobjectcontext: Bellow is a top 2 functions by instruments. I do clearing of that in memory ...
1
vote
1answer
39 views

How can I prevent a Core Data database with external files from being backed up?

We have an app that uses Core Data to store data. Some of the data comes from a server, and is variable sized, and while it's generally small, can also be quite large (a few megabytes). We're using ...
0
votes
2answers
42 views

How to use NSObjectController with Core Data?

I have spent more than a day on trying to find a simple example of how to use an NSObjectController for binding along with core data. All examples are of NSArrayControllers with NSTableView bindings. ...
0
votes
1answer
26 views

nsobject controller linked across two nib (xib) files. declaring nib instantiation

Apple's resource programming guide (RPG) states "it is better to distribute components across multiple nib files."... therefore, i have an associate window nib (Nib 2) that has an nsobjectcontroller ...
0
votes
1answer
46 views

Return value is invalid memory address

I have some codes like this: __block NSArray *array; [manageContext performBlockAndWait:^{ array = [manageContext executeFetchRequest:fetchRequest error:nil]; }]; return array; ...
0
votes
1answer
62 views

Removal of core data object does not nullify all of its relations?

I have an entity called Task which has a to-one relationship with the entities TaskTemplate and Occurrence. Both of these entities have to-many relationships with Tasks. Deletion rules are set to ...
0
votes
0answers
33 views

Lazy Fetching & Maintaining a sorted NSArrayController

I've got a sample project at https://github.com/ericgorr/LazyFetching The setup is pretty straightforward. In my CoreData model, I have two entities: Shelf which has a name property and a to-many ...
0
votes
1answer
57 views

What is the difference between self.managedObjectContext and managedObjectInstance.managedObjectContext?

So, I have the CoreData entities Book, Bookmark, Highlight. A book contains information about the book and an NSSet of Bookmarks. I want to delete the bookmarks present in one book and then ...
0
votes
1answer
45 views

design & logic - Most efficient way to save reordered UITable rows

The blue Table is called Routine and the other one is called Exercise. Routine.exercise has a Many-to-Many relationship with Exercise.routine. I have a UITableView that the user can re-arrange the ...
0
votes
0answers
39 views

core data sometimes got crash unable to open database

on osx 10.8.3 on large data sets (like 2.5G) i got sometimes that crash: After some investigating i got that this may be because i got opened files limit in my app. Bu i have no idea how to fix it, i ...
1
vote
2answers
157 views

Core Data NSManagedObject isFault inside prepareForDeletion

I'm doing some processing inside - prepareForDeletion in a NSManagedObject. However when I try to access some properties of this class they are returned to me as nil (even though I know they are not ...
0
votes
1answer
59 views

Ramifications of choosing fmdb over core data

I'm just learning cocoa (desktop) development, and yes I have read over and over than core data is 95-99% of the time all you need. BUT, at least at a theoritical level, could someone explain to me ...
0
votes
2answers
47 views

Can you update thousands of records in core data without loading them in memory?

If I have thousands of records, is it possible to update a boolean flag on all the records without loading them to memory? If not, is it possible to connect to sqlite directly to do this? Say my ...
0
votes
0answers
64 views

Core data getting locked with multi threading (_objectStoreLockCount > 1)

I am finding a hard time in fixing a core data DB lock situation (_objectStoreLockCount count is > 1 when I run in debug mode). Below is the architecture of my application (MAC OSX): I am using 2 ...
0
votes
1answer
61 views

Core Data: How to update an NSArrayController immediately after adding an NSManagedObject?

I am adding an instance in core data. The entity is represented by an NSArrayController. I would like to access the newly added instance through the controller. A "Skill" instance is added and then I ...
0
votes
0answers
56 views

Core Data prepareForDeletion woes

I'm interested how prepareForDeletion works. I have a pretty simple object graph. One class called Individual and one class called Group. The relationship between them is many-to-many. What I have ...
1
vote
1answer
51 views

How to migrate a core data data model when adding an abstract parent entity?

I created a new core data model version. The changes I made were I added a new entity called "FTASyncParent" which I set as an abstract entity. Then I set the parent entity of all my other entities to ...
0
votes
1answer
33 views

Setting NSFetchRequest resultType in the model editor has no effect

I just ran into an issue with fetch request templates created via the model editor in Xcode 4.6.2. I tried to change the Result Type setting in the Core Data inspector of a fetch request as in this ...
0
votes
1answer
49 views

Max value from core data attribute of different entities

I have three entities in my core data modal, A, B, C. Each has a createdAt date. What is the quickest way to access the most recent createdAt date, regardless of the entity type? Can I do something ...
4
votes
2answers
57 views

Is it necessary to call NSManagedObjectContext save: for in-memory stores?

I'm using CoreData in my app, with a persistent store of type NSInMemoryStoreType. Is it ever necessary to call NSManagedObjectContext save: with this type of store? Does passing save: to ...
0
votes
2answers
66 views

MagicalRecords: Can't save simple relationship

I'm new to MagicalRecord so this may be a simple thing but I've looked everywhere for an answer and no one seems to be having my issue. I have a simple Core Data structure with one Parent leading to ...
0
votes
1answer
50 views

Deleting Core Data objects from in-memory store turns them into faults but does not erase them

I have a Core Data stack based on the NSInMemoryStoreType store. And I've noticed that deleting objects doesn't really remove them or make them nil, bur rather simply turns them into faults. For ...
2
votes
3answers
51 views

Correct way to accessing attributes of a class modeled in core data

Let's say a Recipe object has an NSSet of one or more Ingredients, and that the same relationship is modeled in core data. Given a recipe, what id the correct way to access its ingredients? In this ...
0
votes
1answer
53 views

Overriding insertInManagedObjectContext: will have no effects on child entities in mogenerator : why and how to do?

In the methods insertInManagedObjectContext: provided by mogenerator, there is no call to any super methods. I wonder why. Indeed, Imagine I have two entities : ParentEntity and ChildEntity ; of ...
0
votes
0answers
35 views

How to preload data from Core Data in a NSPersistentDocument?

I have a NSPersistentDocument with a given Core Data model, etc. I have a file, created by this document, let's say it its preload.xml. It "contains" several NSManagedObjects. I would like to load ...
0
votes
1answer
93 views

NSTreeController/NSOutlineView loses its selection

I'm developing a desktop Cocoa application. In the app I have a view-based NSOutlineView binded to an NSTreeController: The NSTreeController is in entity mode and driven by Core Data. Everything ...
1
vote
1answer
63 views

Core Data: Common relationship to different types

Suppose we have two types, House and Pet. These types don't have many things in common, but they both have an owner. The owner is of type Person. I don't want to have both Dog and House derive from a ...
0
votes
1answer
46 views

No data when retrieving NSManagedObject by ID and assigning to property

I am attempting to move all of my edit operations in to their own NSManagedObjectContexts so that any background save operations can continue without accidentally committing unfinished changes. Only ...
1
vote
1answer
35 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
2answers
104 views

Programmatically bind a NSTableView

I trying to get a better understanding of cocoa bindings. I can get a basic Table working with a NSArrayController in IB builder. I'm using the same project and attempting to connect the bindings ...
1
vote
0answers
43 views

What am I not understanding about NSFetchedResultsController and deleting objects from the MOC?

I am successfully updating a tableview using a NSFetchedResultsController, and this is what I am doing: Loading app the app and calling - (NSFetchedResultsController *)fetchedResultsController to ...
2
votes
1answer
55 views

Core Data Returns incorrect value (although nearly right)

Okay so I ask the Core Data for a record (userKey), in that record is a PublicKey which I am extracting, however, publicKey ends up being 90% right but has a few extra characters at the beginning and ...
0
votes
1answer
48 views

How to write a Core Data predicate for objects which are related to an object in a to-many relationship

EntityA has a to-many relationship to EntityB (and EntityB has a to-one relationship to EntityA). I have an array of EntityBs (or more accurately, I have an NSArray that contains instances of ...
0
votes
1answer
27 views

Cocoa Bindings error

Trying to wrap my head around cocoa bindings can't determine the reason for this error I Have a simple app, in which, the app delegate passes the Managedobjectcontext to Window Controller, which ...
0
votes
1answer
33 views

implementing custom accessor methods

I am reading "Core Data Programming Guide". It contains this text: You must, however, change attribute values in a KVC-compliant fashion. For example, the following typically represents a ...
0
votes
1answer
80 views

NSArrayController, creating CoreData entities programatically, and KVO

I have an NSTableView whose NSTableColumn's value is bound to an NSArrayController. The arrayController controls a set of entities in my core data managed object context. It works well, and when new ...

1 2 3 4 5 24