1. ホーム
  2. ios

[解決済み] 既存のiPhoneプロジェクトにCore Dataを追加する

2022-05-25 12:45:18

質問

既存のiPhoneプロジェクトにコアデータを追加したいのですが、コンパイルエラーが多発します。

- NSManagedObjectContext undeclared

 - Expected specifier-qualifier-list before 'NSManagedObjectModel'

 - ...

私はすでにターゲットに Core Data Framework を追加しました ("Targets", "Add" - "Existing Frameworks", "CoreData.framework" で私のプロジェクトを右クリックします).

私のヘッダーファイルです。

NSManagedObjectModel *managedObjectModel;
NSManagedObjectContext *managedObjectContext;       
NSPersistentStoreCoordinator *persistentStoreCoordinator;

[...]

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

何が足りないのでしょうか?新しいプロジェクトを始めるという選択肢はないのですが...。

どうもありがとうございます!

編集 申し訳ありません、これらの実装は持っているのですが、Libraryが不足しているようです。 managedObjectContext undeclared "、" NSPersistentStoreCoordinator undeclared の前にも、"期待される ')' があります。 NSManagedObjectContext "(括弧は正しいように見えますが)...。

#pragma mark -
#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 by merging all of the models found in    
 application bundle.
 */
- (NSManagedObjectModel *)managedObjectModel {

    if (managedObjectModel != nil) {
        return managedObjectModel;
    }
    managedObjectModel = [[NSManagedObjectModel mergedModelFromBundles:nil] retain];    
    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 = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] 
        stringByAppendingPathComponent: @"Core_Data.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(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}    

return persistentStoreCoordinator;
}

どのように解決するのですか?

CoreDataのヘッダーファイルはすべて App_Prefix.pch にインポートされるので、CoreDataクラスはプロジェクト全体で利用可能であり、必要なファイルでヘッダを手動でインポートする必要はありません。

Xcodeを開いて、次のようなファイルを探します。 App_Prefix.pch のようなファイルを探します。デフォルトでは Other Sources グループになります。の後に UIKit import文の後に、以下の行を追加します。

#import <CoreData/CoreData.h>

そして、準備が整ったはずです。

Xcode 4

Xcode 4 で作成されたプロジェクトでは、プレフィックスファイルは Supporting Files グループにあります。これは、' プロジェクト名 -Prefix.pch' と呼ばれます。

Xcode 6+

Xcode 6から、プリコンパイルされたヘッダーファイルは、デフォルトでは含まれなくなりました。これは、モジュールの導入によるもので、モジュールは はプリコンパイルされたヘッダーを使用する必要性を取り除きます。 CoreDataヘッダをグローバルにインクルードするためにPCHファイルを手動で追加することは可能ですが、CoreDataの依存関係を指定することを考慮して @import CoreData; * を使用して CoreData の依存関係を指定することを検討してください。これにより、依存関係が明示され、さらに重要なことに、将来的にこの質問の問題を回避することができます。

* モジュール を有効にする必要があります。 を有効にする必要があります。