up vote 20 down vote favorite
19
share [g+] share [fb]

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.

link|improve this question

feedback

3 Answers

up vote 32 down vote accepted

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:

typedef enum {
    kPaymentFrequencyOneOff = 0,
    kPaymentFrequencyYearly = 1,
    kPaymentFrequencyMonthly = 2,
    kPaymentFrequencyWeekly = 3
} PaymentFrequency;

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.

-(PaymentFrequency)itemTypeRaw {
    return (PaymentFrequency)[[self itemType] intValue];
}

-(void)setItemTypeRaw:(PaymentFrequency)type {
    [self setItemType:[NSNumber numberWithInt:type]];
}

Finally, you should implement +keyPathsForValuesAffecting<Key> so you get KVO notifications for itemTypeRaw when itemType changes.

+(NSSet *)keyPathsForValuesAffectingItemTypeRaw {
    return [NSSet setWithObject:@"itemType"];
}
link|improve this answer
1  
Thank you very much. Very clear answer. – Michael Gaylord Oct 26 '09 at 11:51
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.

link|improve this answer
Interesting. It definitely seems doable. – Michael Gaylord Nov 17 '09 at 11:02
point up for the creativity... :) – Suicidal May 25 '11 at 17:47
brilliant idea! so much easier than creating tables in the db, unless your db is filled from a web service then its probably best to use a db table! – TheLearner Oct 4 '11 at 8:33
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

typedef enum {
kEnumThing, /* 0 is implied */
kEnumWidget, /* 1 is implied */
} MyThingAMaBobs;

@interface myEntity : NSManagedObject

@property (nonatomic) int32_t coreDataEnumStorage;

Elsewhere in code

myEntityInstance.coreDataEnumStorage = kEnumThing;

Or parsing from a JSON string or loading from a file

myEntityInstance.coreDataEnumStorage = [myStringOfAnInteger intValue];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.