What is the best way to bind Core Data entities to enum values so that I am able to assign a type property to the entity? In other words, I have an entity called Item with an itemType property that I want to be bound to an enum, what is the best way of going about this.
| ||||
|
feedback
|
|
You'd have to create custom accessors if you want to restrict the values to an enum. So, first you'd declare an enum, like so:
Then, declare getters and setters for your property. It's a bad idea to override the existing ones, since the standard accessors expect an NSNumber object rather than a scalar type, and you'll run into trouble if anything in the bindings or KVO systems try and access your value.
Finally, you should implement
| |||||
feedback
|
|
An alternative approach I'm considering is not to declare an enum at all, but to instead declare the values as category methods on NSNumber. | |||||||
feedback
|
|
Since enums are backed by a standard short you could also not use the NSNumber wrapper and set the property directly as a scalar value. Make sure to set the data type in the core data model as "Integer 32". MyEntity.h
Elsewhere in code
Or parsing from a JSON string or loading from a file
| |||
|
feedback
|