Search Results

3
votes

Is it safe to manipulate objects that I created outside my thread if I don’t explicitly access them on the thread which created them?

With Core Data, you should have a separate managed object context to use for your import thread, connected to the same coordinator and persistent store. You cannot simply throw objects created in …
3
votes

Cross-model relationships in NSManagedObjectModel from merged models?

Neither model 1 nor model 2 will be loadable at run time unless they're well-formed — that is, unless the toBar and toFoo relationships have destinations. Furthermore, if …
3
votes

setPrimitiveValue:forKey: and to-many relationships

Just mutate the return value of -primitiveValueForKey: as a mutable set, trusting that its return value will do the right thing. Be sure to also use -willChangeValueForKe …
4
votes

Fetching Core Data entities, but not sub-entities

Leopard introduced the includesSubentities property to NSFetchRequest for exactly this purpose. You'll have to subclass your NSObjectController or NSArrayController to provide the fet …
3
votes

How to give title to NSPersistentDocument window

You don't change the title, your users do by saving documents. …
2
votes

Is there a Java equivalent to Apple’s Core Data?

If you have a Mac, install WebObjects — which is included with Xcode — and you'll have access to the Java-based Enterprise Objects Framework. …
2
votes

KVC compliance for numbers in NSManagedObject subclass (CoreData)

Some initial "Is the computer on?"-type questions: Does your model specify that the managed object class for your entity is TestClass? Are you sure you spelled numberFi …
2
votes

Update bound dictionary based on NSTextFieldCell’s edited value

I asked around, and this is the recommendation someone gave me; it looks reasonable. In your NSCell subclass, in whatever method is invoked by the event loop upon setting a new value, do so …