I need to drag a reference to an NSManagedObject b开发者_开发知识库etween two table views of my application. What\'s the preferred NSPasteboard type to store a reference to an NSManagedObject?
I have an NSManagedObject that has been deleted, and the context containing that managed object has been saved. I understand that isDeleted returns YES if Core Data will ask the persistent store to de
I have a subclass of NSManagedObject Class used with Core Data in iPhone. However, I have a temporary \"field\" (ivar) that I want to add in that Class (but I dont want to persist it开发者_开发技巧 in
I\'m trying to remove a managed object context, but instead of removing the object itself it sets all instant variables to null.
Scenario: I created a xcode project called \"Importing\" which I read an XML file in and import content into my core data database. I then have a second \"main\" project where I add the SQLite file i
I have an object ivar foo inside a NSManagedObject subclass bar that I need to be there at all times, as long as the object exists.
I\'m using Core Data + sqlite as a data cache. The app reads in a file into core data, then uses Core Data to run the app. Saves are done to both the NSManagedObjectContext and to the file. I\'ve noti
I\'m using Core Data to cache a decent amount of information, and I have a To-Many relationship set up among my managed objects. Naturally I use an NSFetchRequest to fetch an array of the singular sid
I\'ve been pulling my hair for the last few hours trying to figure out why insertNewObjectForEntityForName is returning NSManagedObject even though I\'m trying to insert an entity of my own type.
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.