I'm getting the above error when the following runs in the iphone simulator (3.0 OS):
@interface Routine : NSManagedObject {
}
@property (nonatomic) BOOL active;
@implementation Routine
@dynamic active
@end
As you can see, I'm subclassing NSManagedObject because I'm using Core Data. In my data model, "active" is an option attribute of type Boolean.
What am I doing wrong here?
Thanks!