NSManagedObject is a generic class that implements all the basic behavior required of a Core Data model object. It is not possible to use instances of direct subclasses of NSObject (or any other class not inheriting from NSManagedObject) with a managed object context. You may create custom ...
12
votes
6answers
3k views
Xcode4: Different code generated for custom core data managed objects
Now that Xcode4 is publicly available I'm moving this question out of Apple's secret dev forum:
Can someone explain why the code generated in the following procedure is different than in Xcode3? Is ...
12
votes
3answers
1k views
How can I tell whether an `NSManagedObject` has been deleted?
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 ...
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. ...
7
votes
4answers
2k views
Is there a way to instantiate a NSManagedObject without inserting it?
This is an iPhone dev question about CoreData.
I have a user interface to insert a Transaction. once the user clicks on a plus he gets the screen and i want to instantiate my Core Data ...
7
votes
8answers
4k views
How can I duplicate, or copy a Core Data Managed Object?
I have a managed object ("A") that contains various attributes and types of relationships, and its relationships also have their own attributes & relationships. What I would like to do is to ...
6
votes
2answers
528 views
Why Automatically Created NSManagedObject Subclass do not have “Proper” header?
If I created subclasses of NSManagedObject Subclass, I see these functions on the implementation files Business.m (for example)
None of these functions are declared in the header file Business.h. I ...
6
votes
3answers
890 views
iphone NSManagedObject - The proper way of deallocing?
I have a sub-class of NSManagedObject, most of the properties are dynamic (created by the managed object), but i have a couple of helper properties which are being created as @synthesize.
What is the ...
5
votes
2answers
1k views
@property definitions with ARC: strong or retain?
Using Xcode 4.2 and ARC, I notice that the auto-generated code for an NSManagedObject still reads like this for properties:
@property (nonatomic, retain) NSString * someString;
1) Shouldn't retain ...
5
votes
1answer
1k views
“[something copyWithZone:]: unrecognized selector sent to instance” when using Bindings / Core Data
(self asking and self-answering because I spent hours on the web looking for this, and most of the resources all say "I solved it in the end" without giving an explanation)
I had a very simple Core ...
5
votes
2answers
535 views
Comparing two NSManagedObjects
I have some code that loops through an array of NSManagedObjects and stops when it finds a certain record that is stored in an instance variable. The only way I can manage to see if they are the same ...
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 ...
5
votes
3answers
3k views
NSUndoManager undo Not Working With Core Data
I am trying to create an iPhone application where the user can add entries. When he presses a new entry, a box will popup asking him for some information. Then he can either press "Cancel" or "Save" ...
4
votes
1answer
114 views
Why exactly would one subclass NSManagedObject?
I've read many of the SO questions on NSManagedObject, the Apple docs, and more, but I still don't really get what subclassing NSManagedObject is for - what role does it play?
In the Apple docs it ...
4
votes
2answers
321 views
Removing a specific entry/row from Core-Data
I'm using Core-Data in my app, and I'm confused when it comes to removing certain rows or entries from the Core-Data storage. I insert some products in to the storage like so:
NSManagedObject ...
4
votes
2answers
426 views
Get modification date for NSManagedObject in Core Data?
Outside of adding an NSDate property to each Entity in my Core Data store, is there a programmatic way to get the modification date for any object?
4
votes
1answer
1k views
NSManagedObject and KVO vs Documentation
I have a custom NSManagedObject subclass, say, Person. I also have a UIView registered with -addObserver:forKeyPath:options:context: to observe various properties of a Person, some of which are ...
4
votes
4answers
2k views
How to auto-increment reference number persistently when NSManagedObjects created in core-data
In my application i am using core-data to store information and saving these data to the server using web-connectivity i have to use MySql.
Basically what i want to do is to keep track of number of ...
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
2answers
2k views
Core data images from desktop to iphone
I built a simple mac data entry tool I use with an iPhone application. I've recently added thumbnail which I added via an Image Well using simple bindings. Its a transformable data type which seems to ...
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
216 views
Restkit-loaded nested Core Data entities cause NSObjectInaccessibleException
I'm using RestKit to grab objects from my RoR service and using CoreData to persist some of the objects (more static-type lookup table objects). TasteTag is one of those persisted objects:
#ifdef ...
3
votes
3answers
135 views
Autoupdating NSManagedObject property modification timestamp
I have an NSManagedObject with two properties:
NSNumber *score;
NSDate *score_timestamp;
I want my score_timestamp field to be updated each time I update score.
I obviously cannot use -willSave ...
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
1answer
77 views
Checking for existing value in NSFetchedResultsController / Core Data
I have some code that calls an API and gets a set of results back, let's call them 'message' objects. Each message has a unique ID.
Unfortunately, I cannot guarantee that the server will not give me ...
3
votes
3answers
244 views
for Xcode produced Core Data managed objects, do I need to add a dealloc method to release variables?
for Xcode produced Core Data managed objects, do I need to add a dealloc method to release variables?
So when I have a core data model for my iPhone app, and I let XCode generate the managed object ...
3
votes
2answers
1k views
Is it possible to override getters and setters for @dynamic properties in an NSManagedObject subclass?
So, my scenario is this:
I have an NSManagedObject subclass in my iOS application, and as a property I want to store the contents of an MKPolygon object. The way I've decided to go about this (and ...
3
votes
2answers
431 views
NSManagedObject hierarchy import and export
I'm on the run to make my NSMangedObjectClass profile im-/exportable.
I try it this way
Exporting works correctly if I write the Relationships in NSArrays because NSSet doesn't have writeToFile ...
3
votes
1answer
176 views
Why are NSManagedObject and NSEntityDescription separate classes?
It seems that an NSEntityDescription object describes data and an NSManagedObject object contains the corresponding data. If you have a normal NSObject subclass, the description of the data and the ...
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
3answers
3k views
core data - the primary key id of a row in the database
Suppose I have a list of books stored in Core Data. I want to search for a book by it's primary key ID. I know the sqlite file created by Core Data has an ID column in each table, but this doesn't ...
3
votes
1answer
108 views
Can't get rid of compiler warnings for primitiveValue accessors in transient property getter impls
I've implemented a transient property as below on one of the models in my app. It is declared in the model design as a transient property with undefined type.
@property (nonatomic, readonly) ...
3
votes
2answers
276 views
What is common case for @dynamic usage?
There is previous post about difference of @synthesize and @dynamic.
I wanna to know more about dynamic from the perspective of how to use @dynamic usually.
Usually we use @dynamic together with ...
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
1k views
How to make Deep Copy of NSManagedObject in Core Data
I am trying to make a duplicate of an existing NSManagedObject and related sub-objects in Core Data. I can't seem to find an easy way to do this.
I have an NSArrayController that is populated from a ...
3
votes
3answers
830 views
NSPredicate for an NSManagedObject's string attribute's length
Could someone please help me define a predicate that returns only NSManagedObject's who's "letters" attribute length is within a certain range?
Here's the example I've been trying, I've got a feeling ...
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
536 views
How can I debug NSManagedObjects in XCode debugger?
How do you get to the values of your Entity (sub class of NSManaged Object) when in the XCode debugger? I get lost among the NSObject and _cd_XXX structures.
3
votes
3answers
181 views
Referencing file on disk from NSManagedObject
What would be the best way to name a file associated to a NSManagedObject. The NSManagedObject will hold the URL to this file.
But I need to create a unique filename for my file. Is there some kind ...
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
0answers
17 views
Sorting Core Data entities by two dependent attributes
Let's say I have a Core Data entity with two NSNumber attributes: value1 and value2.
I want to construct a NSFetchedResultsController so I can display my attributes in a table view. The table view ...
2
votes
1answer
71 views
objective c - making a NSManagedObject and regular NSObject classes that inherit from the same parent class
In my iPhone app I have two viewControllers:
viewController1 has a tableView that shows a list of Item1 objects
viewController2 has a tableView that shows a list of Item2 objects
Where Item1 class ...
2
votes
2answers
57 views
Core Data convert a superclass instance into a subclass instance?
What's the best way to programmatically convert an NSManagedObject-subclass (User) instance into an instance of its subclass (AccountUser)?
Setup
AccountUser inherits from User : NSManagedObject
...
2
votes
1answer
73 views
Adding new version of core data model?
I just created a new version of my core data model with an extra object along with reworked relationships.
I now now have both files, Medical_Codes.xcdatamodel and Medical_Codes_ 2.xcdatamodel.
Do I ...
2
votes
1answer
43 views
Forcing Managed Object to be dirty
Is there a way to force a managed object into the dirty state? I have a managed object that has a relationship to a parent managed object. If I change a property on the child managed object, I was ...
2
votes
1answer
272 views
How to do perfect KVO for NSManagedObject?
Perfect KVO here includes two parts: add observer correctly and remove observer correctly.
The story:
I use one UITableViewCell(cell) to display one NSManagedObject(object).
Each object has some ...
2
votes
1answer
982 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
1answer
208 views
core data : differences between managed object and entities?
i would like to understand a bit more Core Data, why do we "fetch" and search for entities while the entities are "inside" managed objects? For example :
NSManagedObjectContext *moc = [self ...
2
votes
1answer
171 views
NSTreeController with two different core data NSManagedObject entities
I am porting my iOS app to the Mac, and want to set up an NSTreeController to manage a hierarchy of entities. There are two distinct NSManagedObject types in this hierarchy, Group and Item, which have ...
2
votes
1answer
875 views
An NSManagedObjectContext cannot delete objects in other contexts
I have two entities, each displaying on its own UITableView section.
I've enabled editing to allow the user to delete rows by swiping to the right. This works fine for the first entity, but when I ...