【问题标题】:+entityForName: nil is not a legal NSManagedObjectContext parameter searching for entity name 'AppData'+entityForName: nil 不是搜索实体名称“AppData”的合法 NSManagedObjectContext 参数
【发布时间】:2017-06-19 05:58:07
【问题描述】:

持久化容器变为零。当我运行程序时出现此错误:由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“+entityForName:nil 不是搜索实体名称“AppData”的合法 NSManagedObjectContext 参数

我在 stackoverflow 上发现了类似的问题,但没有任何解决问题的答案,这就是我再次发布此问题的原因。

这是我的代码:

-(void)saveData
{

    NSManagedObjectContext *localContext=((AppDelegate*)[[UIApplication sharedApplication] delegate]).persistentContainer.viewContext;
//    [self initPer];



//    UIApplication *app = [UIApplication sharedApplication];
//    AppDelegate *delg = (AppDelegate *)app.delegate;
//    NSManagedObjectContext *localContext = delg.getManagedObj;
//    AppData *appData1= [NSEntityDescription insertNewObjectForEntityForName:@"AppData" inManagedObjectContext:localContext];



//    NSManagedObjectContext *localContext = _del.persistentContainer.viewContext;
    AppData *appDta = [NSEntityDescription insertNewObjectForEntityForName:@"AppData" inManagedObjectContext:localContext];


    NSString *value = [valueArray1 componentsJoinedByString:@" "];
    NSString *commandKey = [keyArray1 componentsJoinedByString:@" "];

    NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];
    [dictionary setObject:value forKey: nsDate];

    NSLog(@"%@", dictionary);


    appDta.key = commandKey;
    appDta.details = dictionary;

}

AppDelegate.h:

#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (readonly, strong) NSPersistentContainer *persistentContainer;

- (void)saveContext;

-(NSManagedObjectContext*)getManagedObj;
@end

AppDelegate.m:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    // Saves changes in the application's managed object context before the application terminates.
    [self saveContext];
}


-(NSManagedObjectContext*)getManagedObj{
    return self.persistentContainer.viewContext;
}

#pragma mark - Core Data stack

@synthesize persistentContainer = _persistentContainer;

- (NSPersistentContainer *)persistentContainer {
    // The persistent container for the application. This implementation creates and returns a container, having loaded the store for the application to it.
    @synchronized (self) {
        if (_persistentContainer == nil) {
            _persistentContainer = [[NSPersistentContainer alloc] initWithName:@"Model"];
            [_persistentContainer loadPersistentStoresWithCompletionHandler:^(NSPersistentStoreDescription *storeDescription, NSError *error) {
                if (error != nil) {
                    // Replace this implementation with code to handle the error appropriately.
                    // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.

                    /*
                     Typical reasons for an error here include:
                     * The parent directory does not exist, cannot be created, or disallows writing.
                     * The persistent store is not accessible, due to permissions or data protection when the device is locked.
                     * The device is out of space.
                     * The store could not be migrated to the current model version.
                     Check the error message to determine what the actual problem was.
                    */
                    NSLog(@"Unresolved error %@, %@", error, error.userInfo);
                    abort();
                }
            }];
        }
    }

    return _persistentContainer;
}

#pragma mark - Core Data Saving support

- (void)saveContext {
    NSManagedObjectContext *context = self.persistentContainer.viewContext;
    NSError *error = nil;
    if ([context hasChanges] && ![context save:&error]) {
        // Replace this implementation with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, error.userInfo);
        abort();
    }
}

可以看到有几行被注释掉了,我留着说明我也试过了,但是没有结果。

【问题讨论】:

  • localContextnil 试试调试吧
  • 显示AppDelegateCoreData 代码。
  • @PrasadPatil 不在评论中 编辑您的问题。
  • @PiyushPatel:我将添加有问题的 AppDelegate 代码。
  • @PiyushPatel:是的,我正在这样做,但我错误地添加了它。

标签: ios objective-c core-data


【解决方案1】:

如上所述HERE

设置

AppDelegate.h:

#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (readonly, strong) NSPersistentContainer *persistentContainer;
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;


- (void)saveContext;

- (NSManagedObjectContext *)getManagedObj;

AppDelegate.m:

#pragma mark - Core Data stack

@synthesize persistentContainer = _persistentContainer;
@synthesize managedObjectContext = _managedObjectContext;
@synthesize persistentStoreCoordinator = _persistentStoreCoordinator;
@synthesize managedObjectModel = _managedObjectModel;


- (NSManagedObjectModel *)managedObjectModel {
    // The managed object model for the application. It is a fatal error for the application not to be able to find and load its model.
    if (_managedObjectContext != nil) {
        return _managedObjectModel;
    }
    NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"Model" withExtension:@"momd"];
    _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
    return _managedObjectModel;
}

- (NSURL *)applicationDocumentsDirectory {
    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
    // The persistent store coordinator for the application. This implementation creates and returns a coordinator, having added the store for the application to it.
    if (_persistentStoreCoordinator != nil) {
        return _persistentStoreCoordinator;
    }

    _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Model.sqlite"];
    NSLog(@"DB Path==> %@",storeURL);
    NSError *error = nil;
    NSString *failureReason = @"There was an error creating or loading the application's saved data.";
    if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error])
    {
        // Report any error we got.
        NSMutableDictionary *dict = [NSMutableDictionary dictionary];
        dict[NSLocalizedDescriptionKey] = @"Failed to initialize the application's saved data";
        dict[NSLocalizedFailureReasonErrorKey] = failureReason;
        dict[NSUnderlyingErrorKey] = error;
        error = [NSError errorWithDomain:@"YOUR_ERROR_DOMAIN" code:9999 userInfo:dict];
        // Replace this with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }

    return _persistentStoreCoordinator;
}


- (NSManagedObjectContext *)getManagedObj {
    // Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.)
    if (_managedObjectContext != nil) {
        return _managedObjectContext;
    }

    NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
    if (!coordinator) {
        return nil;
    }
    _managedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
    [_managedObjectContext setPersistentStoreCoordinator:coordinator];
    return _managedObjectContext;
}

然后尝试使用您的注释代码,如下所示:

    AppDelegate *objAppDel = (AppDelegate *)[[UIApplication sharedApplication]delegate];
    NSManagedObjectContext *context = [objAppDel managedObjectContext];
    AppData *objAppData = [NSEntityDescription insertNewObjectForEntityForName:@"AppData" inManagedObjectContext:context];

【讨论】:

  • 嘿,谢谢你,但现在这里的协调员是零。
  • @PrasadPatil 按照本教程对您有所帮助:appcoda.com/introduction-to-core-data
  • @PrasadPatil 如果您有任何疑问,请告诉我。
  • 我试过这样做,但我得到了这个错误:错误:无法加载 NSManagedObjectModel。 nil 是非法的 URL 参数 CoreData:错误:无法加载 NSManagedObjectModel。 nil 是非法的 URL 参数 2017-06-19 14:53:40.630 记住 Bot-POC[93303:444563] *** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“CoreData:无法加载 NSManagedObjectModel。 nil 是非法的 URL 参数'
  • 我尝试进行教程中显示的更改,但它仍保留在 managedObjectContext 函数循环中。
猜你喜欢
  • 2015-07-06
  • 2014-09-28
  • 2013-12-26
  • 2014-02-23
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多