Как добавить базовые данные в существующее служебное приложение - PullRequest
9 голосов
/ 07 октября 2009

Я создал служебное приложение, которое почти готово, но теперь я нахожусь в точке, где мне действительно нужно сохранить данные.

Поскольку XCode предоставляет только базовые шаблоны данных в приложении для навигации или окна, есть ли простой способ добавить базовые данные в мое приложение? Я никогда не работал с Core Data, и мне просто нужно сохранить сообщения с 460 символами и именем контакта в виде истории отправки сообщений.

Или я должен начать с нового приложения на основе окон, вкл. Core Data и попытаться собрать Утилиту / Откидную деталь вручную?

Может кто-нибудь предложить мне лучшую практику для моей ситуации?

Ответы [ 3 ]

18 голосов
/ 13 января 2012

Поскольку я также пытаюсь понять зону светлых данных основных данных, я выяснил следующие шаги для переноса «нормального» проекта в основные данные (сравнивая пустой проект приложения с пустым проектом приложения с основными данными).

Шаг 1 : добавить CoreData.framework

a) В «Сводке целей проекта» в разделе «Связанные фреймворки и библиотеки» добавьте CoreData.framework с помощью кнопки +
b) Выберите Файл / Новый / Файл и в разделе «Базовые данные» добавьте новую «Модель данных» (и назовите ее, т. Е. XXXXXXX (название см. 3.b)
c) В файле APPLIKATION-Prefix.pch (где APPLICATION - имя вашего проекта) добавьте

   #import <CoreData/CoreData.h>

под двумя другими включают директивы

Шаг 2: В AppDelegate.h добавьте следующие объявления свойств / методов:

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

- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;

Шаг 3: AppDelegate.m

a) Синтезировать свойства:

@synthesize managedObjectContext = __managedObjectContext;
@synthesize managedObjectModel = __managedObjectModel;
@synthesize persistentStoreCoordinator = __persistentStoreCoordinator;

b) в конце модуля добавить следующие строки:

Важно: В методе managedObjectModel и persistentStoreCoordinator вы должны заменить XXXXXXX на имя вашего личного файла .xcdatamodeld

- (void)saveContext
{
    NSError *error = nil;
    NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
    if (managedObjectContext != nil)
    {
        if ([managedObjectContext hasChanges] & ![managedObjectContext 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();
        } 
    }
}

#pragma mark - Core Data stack

/**
 Returns the managed object context for the application.
 If the context doesn't already exist, it is created and bound to the persistent store coordinator for the application.
 */
- (NSManagedObjectContext *)managedObjectContext
{
    if (__managedObjectContext != nil)
    {
        return __managedObjectContext;
    }

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

/**
 Returns the managed object model for the application.
 If the model doesn't already exist, it is created from the application's model.
 */
- (NSManagedObjectModel *)managedObjectModel
{
    if (__managedObjectModel != nil)
    {
        return __managedObjectModel;
    }
    NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"XXXXXXX" withExtension:@"momd"];
    __managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
    return __managedObjectModel;
}

/**
 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 = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"XXXXXXX.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. 

         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.


         If the persistent store is not accessible, there is typically something wrong with the file path. Often, a file URL is pointing into the application's resources directory instead of a writeable directory.

         If you encounter schema incompatibility errors during development, you can reduce their frequency by:
         * Simply deleting the existing store:
         [[NSFileManager defaultManager] removeItemAtURL:storeURL error:nil]

         * Performing automatic lightweight migration by passing the following dictionary as the options parameter: 
         [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];

         Lightweight migration will only work for a limited set of schema changes; consult "Core Data Model Versioning and Data Migration Programming Guide" for details.

         */
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }    

    return __persistentStoreCoordinator;
}

#pragma mark - Application's Documents directory

/**
 Returns the URL to the application's Documents directory.
 */
- (NSURL *)applicationDocumentsDirectory
{
    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}
8 голосов
/ 07 октября 2009

Вам потребуется добавить инфраструктуру CoreData к вашей цели, создать модель данных и создать экземпляры объектов NSManagedObjectModel, NSPersistentStoreCoordinator и NSManagedObjectContext.

Добавление базовых данных в существующее приложение кратко обсуждается в этом документе Apple (поиск "существующее приложение")

Вам также следует ознакомиться с учебным пособием по Apple , чтобы понять, что с ним происходит.

Вы всегда можете также рассмотреть возможность использования SQLite.

5 голосов
/ 07 октября 2009

Создайте новый проект в XCode, используя предоставленные шаблоны - найдите тот, у которого есть поле для проверки использования Core Data для хранения.

Это дает вам файл xcdatamodel и некоторые переменные кода / класса в делегате приложения, которые вы можете скопировать из этого проекта в ваш текущий.

Я также настоятельно рекомендую учебник Apple, упомянутый nall.

Если вы решите просто использовать SQLLite напрямую, настоятельно рекомендуем использовать FMDB , что упрощает код SQL. Это один файл, который вы добавляете в проект.

...