以下のコードステートメントを宣言するとき、このエラーが発生しますか?宣言されていない識別子 'NSMigratePersistentStoresAutomaticallyOption'の使用
宣言されていない識別子の使用 'NSMigratePersistentStoresAutomaticallyOption'
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
私はこれが私のNSMigratePersistentStoresAutomaticallyOption定数を認識してもらうために何をしないのですか?
おかげで、
マイク
有用な質問です。今日私は同じ間違いに陥った。 ugh。ありがとう。 – acecapades