Как добавить SQLite в качестве постоянного хранилища в CoreData? - PullRequest
1 голос
/ 08 января 2010

При использовании концепции coredata нам нужно создать разделение как постоянное хранилище, или оно будет создано автоматически?

1 Ответ

5 голосов
/ 08 января 2010

При создании нового проекта приложения iPhone в XCode, большинство шаблонов позволяют опцию «Использовать базовые данные для хранения». Когда это проверено, делегат приложения будет включать в себя некоторый стандартный код основных данных, включая этот блок, который открывает и / или создает постоянное хранилище:

/**
 Returns the persistent store coordinator for the application.
 If the coordinator doesn't already exist, it is created and the application's store added to it.
 */
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {

    if (persistentStoreCoordinator != nil) {
        return persistentStoreCoordinator;
    }

    NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent:@"App.sqlite"]];

    NSError *error = nil;
    persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
    if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:nil error:&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. If it is not possible to recover from the error, display an alert panel that instructs the user to quit the application by pressing the Home button.

         Typical reasons for an error here include:
         * The persistent store is not accessible
         * The schema for the persistent store is incompatible with current managed object model
         Check the error message to determine what the actual problem was.
         */
        //NSLog(@"Error with persistent store %@, %@", error, [error userInfo]);
        NSLog(@"Error with persistent store (did the data model change?)");
        abort();
    }

    return persistentStoreCoordinator;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...