0
CoreDataとMagicalRecordを初めて使用しました。私はこれを私のAppDelegate
に持っていて、どうして問題があるのかわかりません。MagicalRecord create entity nil
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[MagicalRecord setupCoreDataStack];
NSManagedObjectContext *context = [NSManagedObjectContext MR_defaultContext];
NSEntityDescription *desc = [NSEntityDescription entityForName:@"GFSetModel" inManagedObjectContext:context];
GFSetModel *test = [GFSetModel MR_createEntityInContext:context];
return YES;
}
desc
何らかの理由で常にnilであるとMR_createEntityInContext
通話entityForName: inManagedObjectContext:context
いるので、それがゼロにもテストオブジェクトを作ります。私は異なるデフォルトのコンテキストを試しました。私は間違って何をしていますか?