How come I get this error when I'm declaring the code statement below?
use of undeclared identifier 'NSMigratePersistentStoresAutomaticallyOption'
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
What am I missing in order to get this to recognize my NSMigratePersistentStoresAutomaticallyOption constant?
Thanks,
Mike