การเพิ่ม Core Data ให้กับโครงการ iPhone ที่มีอยู่


138

ฉันต้องการเพิ่มข้อมูลหลักลงในโครงการ iPhone ที่มีอยู่ แต่ฉันยังคงได้รับข้อผิดพลาดในการรวบรวมจำนวนมาก:

- NSManagedObjectContext undeclared

 - Expected specifier-qualifier-list before 'NSManagedObjectModel'

 - ...

ฉันได้เพิ่ม Core Data Framework ไปยังเป้าหมายแล้ว (คลิกขวาที่โครงการของฉันภายใต้ "Target", "Add" - "Framework ที่มีอยู่", "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" แต่ยังมี "Expected ')' มาก่อน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;
}

คำตอบ:


144

ไฟล์ส่วนหัว CoreData ทั้งหมดจะถูกนำเข้าApp_Prefix.pchดังนั้นคลาส CoreData จะพร้อมใช้งานตลอดทั้งโครงการของคุณดังนั้นคุณไม่จำเป็นต้องนำเข้าส่วนหัวในไฟล์ที่คุณต้องการด้วยตนเอง

ดังนั้นให้เปิด Xcode และค้นหาไฟล์บางอย่างเช่นApp_Prefix.pchโดยค่าเริ่มต้นมันอยู่ในOther Sourcesกลุ่ม หลังจากUIKitคำสั่งการนำเข้าเพิ่มบรรทัดต่อไปนี้:

#import <CoreData/CoreData.h>

และคุณควรพร้อมที่จะไป

Xcode 4

สำหรับโครงการที่สร้างใน Xcode 4 ไฟล์คำนำหน้าสามารถพบได้ในSupporting Filesกลุ่มในตัวนำทางโครงการ มันเรียกว่า ' projectname -Prefix.pch' โดยค่าเริ่มต้น

Xcode 6+

เริ่มต้นด้วย Xcode 6 ไฟล์ส่วนหัวที่คอมไพล์แล้วจะไม่รวมอยู่ในค่าเริ่มต้นอีกต่อไป นี่เป็นเพราะการเปิดตัวโมดูลซึ่งจะช่วยลดความจำเป็นในการใช้ส่วนหัวที่คอมไพล์แล้ว ในขณะที่ยังคงเป็นไปได้ที่จะเพิ่มไฟล์ PCH ด้วยตนเองเพื่อรวมส่วนหัว CoreData ด้วยตนเองให้พิจารณาระบุการพึ่งพา CoreData โดยใช้@import CoreData;* ในทุกไฟล์ที่ใช้ CoreData สิ่งนี้ทำให้การอ้างอิงชัดเจนและที่สำคัญยิ่งกว่าจะหลีกเลี่ยงปัญหาของคำถามนี้ในอนาคต

* ต้องเปิดใช้งานโมดูลเพื่อให้สามารถใช้งานได้


จะทำอย่างไรถ้าฉันไม่พบไฟล์ App_prefix.pch ใด ๆ ฉันทำงานใน xcode 6.4 และ ios 8.4
Anees

128

เพื่ออธิบายขั้นตอนทั้งหมดที่คุณต้องดำเนินการเพื่อเพิ่ม Core Data ให้กับโครงการที่ก่อนหน้านี้ไม่มี

ขั้นตอนที่ 1: เพิ่ม Framework

คลิกที่เป้าหมายแอปของคุณ (ที่บานหน้าต่างด้านซ้ายเป็นไอคอนด้านบนที่มีชื่อแอปของคุณ) จากนั้นไปที่แท็บ 'สร้างเฟส' จากนั้นไปที่ 'ลิงก์ไบนารีกับไลบรารี' คลิก '+' ที่ด้านล่างแล้วค้นหา 'CoreData.framework' และเพิ่มลงในโครงการของคุณ

จากนั้นนำเข้า coredata บนวัตถุทั้งหมดที่คุณต้องการ (วิธีที่ไม่เซ็กซี่) โดยใช้:

รวดเร็ว

import CoreData

วัตถุประสงค์ C

#import <CoreData/CoreData.h>

หรือเพิ่มการนำเข้าด้านล่างการนำเข้าทั่วไปในไฟล์. pch ของคุณ (เซ็กซี่มากขึ้น) เช่นนี้:

#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
    #import <CoreData/CoreData.h>
#endif

ขั้นตอนที่ 2: เพิ่มตัวแบบข้อมูล

ในการเพิ่มไฟล์. xcdatamodel ให้คลิกขวา / control-click ที่ไฟล์ของคุณในบานหน้าต่างด้านขวา (เช่นในโฟลเดอร์ Resources เพื่อความปลอดภัย) และเลือกเพิ่มไฟล์ใหม่คลิกแท็บข้อมูลหลักเมื่อเลือกประเภทไฟล์ของคุณจากนั้นคลิก ' แบบจำลองข้อมูล 'ตั้งชื่อแล้วคลิกถัดไปและเสร็จสิ้นและจะเพิ่มลงในโครงการของคุณ เมื่อคุณคลิกที่วัตถุรูปแบบนี้คุณจะเห็นอินเทอร์เฟซเพื่อเพิ่มเอนทิตีลงในโครงการของคุณด้วยความสัมพันธ์ที่คุณต้องการ

ขั้นตอนที่ 3: อัปเดตผู้แทนแอป

ในSwiftบน AppDelegate.swift

//replace the previous version of applicationWillTerminate with this
func applicationWillTerminate(application: UIApplication) {
    // 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()
}

func saveContext () {
    var error: NSError? = nil
    let 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.
            //println("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.
var managedObjectContext: NSManagedObjectContext {
    if !_managedObjectContext {
        let coordinator = self.persistentStoreCoordinator
        if coordinator != nil {
            _managedObjectContext = NSManagedObjectContext()
            _managedObjectContext!.persistentStoreCoordinator = coordinator
        }
    }
    return _managedObjectContext!
}
var _managedObjectContext: NSManagedObjectContext? = nil

// Returns the managed object model for the application.
// If the model doesn't already exist, it is created from the application's model.
var managedObjectModel: NSManagedObjectModel {
    if !_managedObjectModel {
        let modelURL = NSBundle.mainBundle().URLForResource("iOSSwiftOpenGLCamera", withExtension: "momd")
        _managedObjectModel = NSManagedObjectModel(contentsOfURL: modelURL)
    }
    return _managedObjectModel!
}
var _managedObjectModel: NSManagedObjectModel? = nil

// 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.
var persistentStoreCoordinator: NSPersistentStoreCoordinator {
    if !_persistentStoreCoordinator {
        let storeURL = self.applicationDocumentsDirectory.URLByAppendingPathComponent("iOSSwiftOpenGLCamera.sqlite")
        var error: NSError? = nil
        _persistentStoreCoordinator = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
        if _persistentStoreCoordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: storeURL, options: nil, error: &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 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:
            [NSMigratePersistentStoresAutomaticallyOption: true, NSInferMappingModelAutomaticallyOption: true}
            Lightweight migration will only work for a limited set of schema changes; consult "Core Data Model Versioning and Data Migration Programming Guide" for details.
            */
            //println("Unresolved error \(error), \(error.userInfo)")
            abort()
        }
    }
    return _persistentStoreCoordinator!
}
var _persistentStoreCoordinator: NSPersistentStoreCoordinator? = nil

// #pragma mark - Application's Documents directory

// Returns the URL to the application's Documents directory.
var applicationDocumentsDirectory: NSURL {
    let urls = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)
    return urls[urls.endIndex-1] as NSURL
}

ในObjective Cตรวจสอบให้แน่ใจว่าได้เพิ่มวัตถุเหล่านี้ใน AppDelegate.h

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

 - (NSURL *)applicationDocumentsDirectory; // nice to have to reference files for core data

สังเคราะห์วัตถุก่อนหน้าใน AppDelegate.m ดังนี้:

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

จากนั้นเพิ่มวิธีการเหล่านี้ใน AppDelegate.m (ตรวจสอบให้แน่ใจว่าได้ใส่ชื่อของโมเดลที่คุณเพิ่มในจุดที่แสดง):

- (void)saveContext{
    NSError *error = nil;
    NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
    if (managedObjectContext != nil) {
        if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) {
            NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
            abort();
        }
    }
}

- (NSManagedObjectContext *)managedObjectContext{
    if (_managedObjectContext != nil) {
        return _managedObjectContext;
    }

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

- (NSManagedObjectModel *)managedObjectModel{
    if (_managedObjectModel != nil) {
        return _managedObjectModel;
    }
    NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"NAMEOFYOURMODELHERE" withExtension:@"momd"];
    _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
    return _managedObjectModel;
}

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
    if (_persistentStoreCoordinator != nil) {
        return _persistentStoreCoordinator;
    }

    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"NAMEOFYOURMODELHERE.sqlite"];

    NSError *error = nil;
    _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
    if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {

        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];
}

ขั้นตอนที่ 4: รับวัตถุข้อมูลไปยัง ViewControllers ที่คุณต้องการข้อมูล

ตัวเลือกที่ 1 ใช้ ManagedObjectContext ของผู้แทนแอปจาก VC (ที่ต้องการและง่ายกว่า)

ตามที่ suggeted โดย @ brass-kazoo - ดึงการอ้างอิงถึง AppDelegate และ managedObjectContext ผ่าน:

รวดเร็ว

 let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
 appDelegate.managedObjectContext

วัตถุประสงค์ C

 [[[UIApplication sharedApplication] delegate] managedObjectContext];

ใน ViewController ของคุณ

ตัวเลือกที่ 2 สร้าง ManagedObjectContext ใน VC ของคุณและให้ตรงกับ AppDelegate จาก AppDelegate (ต้นฉบับ)

แสดงเฉพาะเวอร์ชันเก่าสำหรับ Objective C เท่านั้นเนื่องจากใช้วิธีที่ต้องการได้ง่ายกว่ามาก

ใน ViewController.h

@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext;

ใน ViewController.m

@synthesize managedObjectContext = _managedObjectContext;

ใน AppDelegate หรือคลาสที่สร้าง ViewController ให้ตั้งค่า managedObjectContext ให้เหมือนกับ AppDelegate

ViewController.managedObjectContext = self.managedObjectContext;

หากคุณต้องการให้วิวล์คอนโทรลเลอร์ใช้ Core Data เป็น FetchedResultsController คุณจะต้องแน่ใจว่าสิ่งนี้อยู่ใน ViewController.h ของคุณ

@interface ViewController : UIViewController <NSFetchedResultsControllerDelegate> {
  NSFetchedResultsController *fetchedResultsController;
  NSManagedObjectContext *managedObjectContext;
}

 @property (nonatomic, retain) NSFetchedResultsController *fetchedResultsController;

และนี่คือใน ViewController.m

@synthesize fetchedResultsController, managedObjectContext;

หลังจากทั้งหมดที่คุณสามารถใช้ managedObjectContext นี้เพื่อเรียกใช้ fetchRequests ปกติที่จำเป็นสำหรับ CoreData goodness! สนุก


2
ใน AppDelegate.h เมธอด applicationDoumentsDirectory ควรส่งคืน NSURL แทน NSString
NSRover

9
นี่คือคำตอบที่ดีที่สุด IMO! แม้ว่าแทนที่จะเป็นขั้นตอนที่ 4 ฉันได้รับการอ้างอิงถึง AppDelegate ผ่าน[[UIApplication sharedApplication] delegate]และบริบทผ่าน[appDelegate managedObjectContext]
brasskazoo

อย่าลืมนำเข้า Coredata ในไฟล์ AppDelegate.h
Frantzdy Romain

18

สำหรับ Swift 3: รวมข้อมูลการบันทึกและการส่งคืน

ขั้นตอนที่ 1 : เพิ่มกรอบงาน

ป้อนคำอธิบายรูปภาพที่นี่

ป้อนคำอธิบายรูปภาพที่นี่

ขั้นตอนที่ 2:เพิ่มรูปแบบข้อมูล

ไฟล์> ใหม่> ไฟล์> ข้อมูลแกนหลัก> ตัวแบบข้อมูล

  • ตั้งชื่อไฟล์เป็นSampleDataไฟล์ผลลัพธ์SampleData.xcdatamocelId

ขั้นตอนที่ 3:เพิ่มฟังก์ชั่นด้านล่างให้กับตัวแทนแอพของคุณและเพิ่ม "นำเข้า CoreData" ไปด้านบน

func applicationWillTerminate(_ application: UIApplication) {
    // 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()
}


// MARK: - Core Data stack

lazy var persistentContainer: NSPersistentContainer = {
    /*
     The persistent container for the application. This implementation
     creates and returns a container, having loaded the store for the
     application to it. This property is optional since there are legitimate
     error conditions that could cause the creation of the store to fail.
     */


    // SEE BELOW LINE OF CODE WHERE THE 'name' IS SET AS THE FILE NAME (SampleData) FOR THE CONTAINER

    let container = NSPersistentContainer(name: "SampleData")
    container.loadPersistentStores(completionHandler: { (storeDescription, error) in
        if let error = error as NSError? {
            // Replace this implementation with code to handle the error appropriately.
            // fatalError() 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.
             */
            fatalError("Unresolved error \(error), \(error.userInfo)")
        }
    })
    return container
}()

// MARK: - Core Data Saving support

func saveContext () {
    let context = persistentContainer.viewContext
    if context.hasChanges {
        do {
            try context.save()
        } catch {
            // Replace this implementation with code to handle the error appropriately.
            // fatalError() 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.
            let nserror = error as NSError
            fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
        }
    }
}

ขั้นตอนที่ 4: การเพิ่มเอนทิตีและแอตทริบิวต์ให้กับโมเดล

a) เพิ่มเอนทิตี ป้อนคำอธิบายรูปภาพที่นี่

b) เพิ่มคุณสมบัติ ป้อนคำอธิบายรูปภาพที่นี่

ขั้นตอนที่ 5: การบันทึกข้อมูล

func saveItem(itemToSave: String){
    let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext

//**Note:** Here we are providing the entityName **`Entity`** that we have added in the model
    let entity = NSEntityDescription.entity(forEntityName: "Entity", in: context)
    let myItem = NSManagedObject(entity: entity!, insertInto: context)

    myItem.setValue(itemToSave, forKey: "item")
    do {
        try context.save()
    }
    catch{
        print("There was an error in saving data")
    }
}

ขั้นตอนที่ 5:การดึงข้อมูล

override func viewWillAppear(_ animated: Bool) {
    // Obtaining data from model
    let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
    let fetchRequest = NSFetchRequest<NSFetchRequestResult>(entityName: "Entity")

    do {
        let results = try context.fetch(fetchRequest)
        let obtainedResults = results as! [NSManagedObject]
        let firstResult = obtainedResults[0]
        let myValue = firstResult.value(forKey: "item")

        print("myValue: \(myValue)")
    } catch {
        print("Error")
    }
}

11

ลองสร้างแอปพลิเคชัน Core Data ที่ได้รับการสนับสนุน Cocoa และดูที่ AppDelegate คุณจะเห็นวิธีการติดตั้งสแต็กข้อมูลหลักที่นั่นรวมถึงไฟล์โมเดลวัตถุที่มีการจัดการสำหรับการกำหนดเอนทิตีของคุณและสิ่งที่เกี่ยวข้องกับข้อมูลหลักอื่น ๆ

คุณแสดงให้เราเห็นเพียงส่วนหัวเท่านั้น (เช่นการประกาศ) แต่ไม่ใช่การติดตั้ง (เช่นคำจำกัดความ) ของสแต็กข้อมูลแกน


สำหรับ swift 3 ฉันใช้ขั้นตอนของ ColossalChris แต่ในส่วนของ AppDelegate ใช้คำตอบนี้ (คัดลอกจากโครงการใหม่ด้วยการสนับสนุนข้อมูลหลัก) เพื่อรับรหัสที่เข้ากันได้ swift 3
MrAn3

8

หากคุณพบปัญหาเดียวกันนี้ใน xcode 4 เช่นฉัน มันแตกต่างกัน: ฉันต้องเลือกโครงการจากนั้นในเป้าหมายขยาย"เชื่อมโยงไบนารีกับไลบรารี"ซึ่งแสดงไลบรารีปัจจุบัน จากนั้นคลิก + (เครื่องหมายบวก) เพื่อเลือกไลบรารีเพิ่มเติมที่คุณต้องการ ฉันวางไว้ที่ด้านบนสุดของโครงการและต้องย้าย (ลากแล้ววาง) ไปยังกลุ่ม Frameworksแต่นั่นก็เป็นเช่นนั้น


5

ตามที่ Eimantas ได้กล่าวถึงการหายตัวไปของการใช้งาน Core Stack เช่น

- (NSManagedObjectContext *) managedObjectContext;
- (NSManagedObjectModel *)managedObjectMode;
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator;

ในการแก้ปัญหาคือการสร้างโครงการไดรเวอร์ข้อมูลหลักใหม่และคัดลอก / วางการดำเนินการกับโครงการของคุณ


2
จากนั้นวิธีการจัดการบริบทจะตระหนักถึงรูปแบบ? โดยอัตโนมัติ?
fengd

4

สำหรับ Swift 3:

ไฟล์ -> ไฟล์ใหม่ -> CoreData-> Model เพื่อสร้างแบบจำลอง

อ้างถึงลิงค์นี้สำหรับข้อมูลเพิ่มเติมเกี่ยวกับวิธีการใช้งาน


1

// ใน Swift 2.2 คุณสามารถทำสิ่งต่อไปนี้ได้โดยไม่ต้องเปลี่ยนไฟล์ AppDelegate

  1. โครงการ -> เป้าหมาย -> เฟรมเวิร์กและไลบรารีที่ลิงก์ตอนนี้เพิ่มเฟรมเวิร์กใหม่ (คลิกที่ +) 'CoreData'
  2. ไฟล์ -> ไฟล์ใหม่ -> CoreData-> DataModel ตั้งชื่อเป็น A.xcdatamodelid พูด
  3. ใน A.xcdatamodelid สร้าง enitity ใหม่ (คลิกที่เอนทิตี้ +) ตั้งชื่อเป็น Bc และตั้งค่าคลาสเป็น 'Bc' ในหน้าต่างตัวตรวจสอบด้านขวา
  4. ตอนนี้เพิ่มคุณสมบัติให้กับนิติบุคคล (คลิกที่แอตทริบิวต์ +) เพิ่มหนึ่งคุณลักษณะสำหรับเช่น: ชื่อและประเภทของมันเป็นสตริง
  5. ตอนนี้ตัวแก้ไข -> สร้างคลาสย่อย NSManagedObject -> คลิกถัดไปในหน้าต่างป๊อปอัป -> อีกครั้งถัดไป -> จากนั้นคลิกสร้าง ไฟล์ใหม่สองไฟล์จะถูกสร้างขึ้น 1. คลาสใหม่ชื่อ Bc.swift และนามสกุลที่ชื่อว่า Bc + coredataproperties.swift
  6. ไฟล์ -> ไฟล์ใหม่ -> ios-> cocoa Touch class -> ตั้ง subclass เป็น NSObject-> ตั้งชื่อเป็น DataController.swift ภายในไฟล์ประกอบด้วย ///

    นำเข้า UIKit นำเข้า CoreData คลาส DataController: NSObject {

    var managedObjectContext: NSManagedObjectContext
    
    override  init() {
        // This resource is the same name as your xcdatamodeld contained in your project.
        guard let modelURL = NSBundle.mainBundle().URLForResource("A", withExtension:"momd") else {
            fatalError("Error loading model from bundle")
        }
        // 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.
        guard let mom = NSManagedObjectModel(contentsOfURL: modelURL) else {
            fatalError("Error initializing mom from: \(modelURL)")
        }
        let psc = NSPersistentStoreCoordinator(managedObjectModel: mom)
        self.managedObjectContext = NSManagedObjectContext(concurrencyType: .MainQueueConcurrencyType)
        self.managedObjectContext.persistentStoreCoordinator = psc
    
        let urls = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)
        let docURL = urls[urls.endIndex-1]
        /* The directory the application uses to store the Core Data store file.
        This code uses a file named "A.sqlite" in the application's documents directory.
        */
        let storeURL = docURL.URLByAppendingPathComponent("A.sqlite")
        do {
            try psc.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: storeURL, options: nil)
        } catch {
            fatalError("Error migrating store: \(error)")
        }
    
    }

    }

//////

  1. ขณะนี้อยู่ในไฟล์ viewcontroller คุณสามารถเข้าถึง db ของคุณโดยใช้สองวิธี สำคัญ: รวมคำสั่งใน viewController ของคุณ "import CoreData" call seed () -> เพื่อแทรกค่าลงใน db / entity b call fetch () -> เพื่อดึงค่าจาก db / entity

/////// เมล็ดพันธุ์ () -> def

func seedPerson() {

        // create an instance of our managedObjectContext
        let moc = DataController().managedObjectContext

        // we set up our entity by selecting the entity and context that we're targeting
        let entity = NSEntityDescription.insertNewObjectForEntityForName("Bc", inManagedObjectContext: moc) as! Bc

        // add our data
        entity.setValue("Meera", forKey: "name")


        // we save our entity
        do {
            try moc.save()
        } catch {
            fatalError("Failure to save context: \(error)")
        }
    }

// fetch () def

func fetch() {
        let moc = DataController().managedObjectContext
        let personFetch = NSFetchRequest(entityName: "Bc")

        do {
            let fetchedPerson = try moc.executeFetchRequest(personFetch) as! [Bc]
            print(fetchedPerson.first!.name!)

        } catch {
            fatalError("Failed to fetch person: \(error)")
        }
    }

0

view.h

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

    @interface ViewController :  
    UIViewController<UITableViewDataSource,UITableViewDelegate>

   @property (weak, nonatomic) IBOutlet UITableView *coreDataList;
   - (IBAction)addBtnClick:(id)sender;
   @property (strong, nonatomic) NSMutableArray *dataList;
   @end

detail.h

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

 @interface DetailViewController : UIViewController<UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet UITextField *nameTxt;
@property (weak, nonatomic) IBOutlet UITextField *mobileTxt;
@property (weak, nonatomic) IBOutlet UITextField *emailIdTxt;
 - (IBAction)saveBtnClick:(id)sender;
@property (strong,nonatomic) NSManagedObject *userData;

@end

0
  - (void)viewDidLoad {
  [super viewDidLoad];
  // Do any additional setup after loading the view.
   if (self.userData) {
    [self.nameTxt setText:[self.userData valueForKey:@"name"]];
    [self.mobileTxt setText:[self.userData 
     valueForKey:@"mobileNumber"]];
    [self.emailIdTxt setText:[self.userData valueForKey:@"email"]];
    [self.imgView setImage:[UIImage imageWithData:[self.userData 
     valueForKey:@"imageView"]]];    }
        }

  - (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
  }


  - (BOOL)textFieldShouldReturn:(UITextField *)textField
  {
   [textField resignFirstResponder];
return YES;
 }
  /*
  #pragma mark - Navigation



 - (IBAction)browseBtn:(id)sender
   {

  UIImagePickerController *imgpic =[[UIImagePickerController      
     alloc]init];     
  imgpic .delegate =self;
 imgpic .sourceType =UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:imgpic animated:YES completion:nil];

 }
 -(void)imagePickerController:(UIImagePickerController *)picker 
 didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
 {
  UIImage *choose = info[UIImagePickerControllerOriginalImage];
self.imgView.image=choose;
[picker dismissViewControllerAnimated:YES completion:nil];
}


  - (IBAction)saveBtnClick:(id)sender {

 NSManagedObjectContext *context = [self managedObjectContext];

 if (self.userData) {
    // Update existing data
    [self.userData setValue:self.nameTxt.text forKey:@"name"];
    [self.userData setValue:self.mobileTxt.text 
     forKey:@"mobileNumber"];        
   [self.userData setValue:self.emailIdTxt.text forKey:@"email"];

    UIImage *sampleimage = _imgView.image;
    NSData *dataImage = UIImageJPEGRepresentation(sampleimage, 1.0);
            [self.userData setValue:dataImage forKey:@"imageView"];

    } else {
    // Create a new data
    NSManagedObject *newDevice = [NSEntityDescription 
     insertNewObjectForEntityForName:@"Details" 
     inManagedObjectContext:context];
    [newDevice setValue:self.nameTxt.text forKey:@"name"];
    [newDevice setValue:self.mobileTxt.text forKey:@"mobileNumber"];
    [newDevice setValue:self.emailIdTxt.text forKey:@"email"];
    UIImage *sampleimage = _imgView.image;
    NSData *dataImage = UIImageJPEGRepresentation(sampleimage, 1.0);

    [newDevice setValue:dataImage forKey:@"imageView"];

  }

  NSError *error = nil;
 // Save the object to persistent store
 if (![context save:&error]) {
    NSLog(@"Can't Save! %@ %@", error, [error localizedDescription]);
 }

 [self dismissViewControllerAnimated:YES completion:nil];
 }
   @end

.h

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

 @interface DetailViewController :
 UIViewController<UITextFieldDelegate,UINavigationControllerDelegate,            
     UIIma
    gePickerControllerDelegate>
         @property (weak, nonatomic) IBOutlet UITextField *nameTxt;
  @property (weak, nonatomic) IBOutlet UITextField *mobileTxt;
 @property (weak, nonatomic) IBOutlet UITextField *emailIdTxt;
  @property (weak, nonatomic) IBOutlet UIImageView *imgView;
 - (IBAction)browseBtn:(id)sender;
 - (IBAction)saveBtnClick:(id)sender;
@property (strong,nonatomic) NSManagedObject *userData;

@end

คำอธิบายสำหรับวิธีการแก้ปัญหาของคุณจะได้รับการชื่นชม ... นอกจากนี้รหัสน้อยที่สุดโดยไม่ต้องใส่รหัสความคิดเห็นที่ไม่เกี่ยวข้องออกไป ...
yakobom

0
 let alert  = UIAlertController(title:"Error", message: "No Internet Connection", preferredStyle: .alert)
            alert.addAction(UIAlertAction(title: "Ok", style: .default, handler: { (action) in}))
            alert.addAction(UIAlertAction(title: "Try Again", style: .default, handler: { (action) in
                self.networkCall(text: self.daySelected)
            }))
            self.present(alert, animated: false, completion: nil)

0
+(void) insetPlusUpdate:(NSDictionary *)dataa {

    NSManagedObjectContext * context;

    if (![[NSThread currentThread] isMainThread]) {

        context = [[NSManagedObjectContext alloc] init];

        [context setPersistentStoreCoordinator:[APP_DELEGATE persistentStoreCoordinator]];
    } else {

        context = [APP_DELEGATE managedObjectContext];
    }

    NSFetchRequest * request = [[NSFetchRequest alloc] init];

    NSEntityDescription * entity = [NSEntityDescription entityForName:@"EntityName" inManagedObjectContext:context];

    [request setEntity:entity];

    NSPredicate * check = [NSPredicate predicateWithFormat:@"attribute == %@", Dict[@"key"]];

    [request setPredicate:check];

    NSError * error = nil;

    if ([context countForFetchRequest:request error:&error] == 0) {

Entity.attribute = @"";

    } else {


        NSArray * array = [context executeFetchRequest:request error:&error];

        EntityName * entity = [array firstObject];

  Entity.attribute = @"";

    }

}

+(NSString *)fetch:(NSString *)feed_id{

    NSManagedObjectContext * context;

    if(![[NSThread currentThread] isMainThread]){

        context = [[NSManagedObjectContext alloc] init];

        [context setPersistentStoreCoordinator:[APP_DELEGATE persistentStoreCoordinator]];

    } else {

        context = [APP_DELEGATE managedObjectContext];

    }

    NSFetchRequest * request = [[NSFetchRequest alloc] init];

    NSEntityDescription * entity = [NSEntityDescription entityForName:@"ENTITYNAME" inManagedObjectContext:context];

    [request setEntity:entity];

   NSPredicate * check = [NSPredicate predicateWithFormat:@"attribute == %@", Dict[@"key"]];

    [request setPredicate:check];

    NSError * error = nil;

    if ([context countForFetchRequest:request error:&error] > 0) {

        NSArray * array = [context executeFetchRequest:request error:&error];

        ENTITYNAME * fetchData = [array firstObject];

        NSString * string = fetchData.attribte[@"key"];

        return string;
    }

    return nil;
}


+(BOOL)delete{

    NSManagedObjectContext * context;

    if (![[NSThread currentThread] isMainThread]) {

        context = [[NSManagedObjectContext alloc] init];

        [context setPersistentStoreCoordinator:[APP_DELEGATE persistentStoreCoordinator]];

    } else {

        context = [APP_DELEGATE managedObjectContext];

    }

    NSFetchRequest * request = [[NSFetchRequest alloc] init];

    NSEntityDescription * entity = [NSEntityDescription entityForName:@"ENTITYNAME" inManagedObjectContext:context];

    [request setEntity:entity];

    NSError *error = nil;

    NSBatchDeleteRequest *deleteRequest = [[NSBatchDeleteRequest alloc] initWithFetchRequest: request];

    @try{

        [context executeRequest:deleteRequest error:&error];
        if([context save:&error]){

            NSLog(@"Deleted");

            return [context save:&error];

        }
        else{

            return [context save:&error];
        }

    }
    @catch(NSException *exception){

        NSLog(@"failed %@",exception);
        return [context save:&error];
    }    


}

0

โค้ดตัวอย่าง view1

#import "ViewController.h"
#import "DetailViewController.h"

 @interface ViewController ()
 {
  NSInteger indexPathvalue;
 }
 @end

  @implementation ViewController

 - (NSManagedObjectContext *)managedObjectContext {
     NSManagedObjectContext *context = nil;
     id delegate = [[UIApplication sharedApplication] delegate];
     if ([delegate performSelector:@selector(managedObjectContext)]) {
       context = [delegate managedObjectContext];
     }
   return context;
  }

  - (void)viewDidLoad {
      [super viewDidLoad];
  // Do any additional setup after loading the view, typically from a nib.
    NSLog(@"call this one2");
 }

 - (void)viewDidAppear:(BOOL)animated
 {
   [super viewDidAppear:animated];
   NSManagedObjectContext *managedObjectContext = [self 
   managedObjectContext];
   NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] 
   initWithEntityName:@"Details"];
   self.dataList = [[managedObjectContext executeFetchRequest:fetchRequest   
   error:nil] mutableCopy];
   [_coreDataList reloadData];

    NSLog(@"call this one");
 }
    #pragma mark - Table view data source

   - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
   {
     return 1;
   }

     - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:
   (NSInteger)section
    {
    return self.dataList.count;
    }

   - (UITableViewCell *)tableView:(UITableView *)tableView 
   cellForRowAtIndexPath:(NSIndexPath *)indexPath
   {
   static NSString *CellIdentifier = @"Cell";
   UITableViewCell *cell = [tableView     
   dequeueReusableCellWithIdentifier:CellIdentifier];

     if (cell == nil)
    {
    cell = [[UITableViewCell   
    alloc]initWithStyle:UITableViewCellStyleSubtitle 
    reuseIdentifier:CellIdentifier];
    }

   NSManagedObject *user = [self.dataList objectAtIndex:indexPath.row];
   cell.textLabel.text = [user valueForKey:@"name"];
      cell.detailTextLabel.text = [user valueForKey:@"mobileNumber"];
    cell.imageView.image = [UIImage imageWithData:[user
    valueForKey:@"imageView"]]; 
    return cell;
    }


    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:
    (NSIndexPath *)indexPath
    {
    indexPathvalue = indexPath.row;
    [self performSegueWithIdentifier:@"detailView" sender:self];
    }

     - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:
    (NSIndexPath *)indexPath
    {
     return YES;
     }
     - (void)tableView:(UITableView *)tableView commitEditingStyle:
      (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:
     (NSIndexPath *)indexPath
    {
    NSManagedObjectContext *context = [self managedObjectContext];
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
    [context deleteObject:[self.dataList objectAtIndex:indexPath.row]];
    NSError *error = nil;
    if (![context save:&error]) {
        NSLog(@"Can't Delete! %@ %@", error, [error localizedDescription]);
        return;
    }
    [self.dataList removeObjectAtIndex:indexPath.row];
    [_coreDataList reloadData];

     }

    }
   - (void)didReceiveMemoryWarning {
   [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }

   - (IBAction)addBtnClick:(id)sender {
    }


    #pragma mark - Navigation

    // In a storyboard-based application, you will often want to do a little      
    - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
     {
   // Get the new view controller using [segue destinationViewController].
   // Pass the selected object to the new view controller.
    if ([segue.identifier isEqualToString:@"detailView"])
   {
    NSManagedObject *obj = [self.dataList objectAtIndex:indexPathvalue];
    DetailViewController *detail = segue.destinationViewController;
    detail.userData = obj;
    }

    }
   @end

มุมมองรายละเอียดตัวอย่าง

       #import "DetailViewController.h"

       @interface DetailViewController ()

       @end

       @implementation DetailViewController

      - (NSManagedObjectContext *)managedObjectContext {
     NSManagedObjectContext *context = nil;
     id delegate = [[UIApplication sharedApplication] delegate];
     if ([delegate performSelector:@selector(managedObjectContext)]) {
    context = [delegate managedObjectContext];
     }
     return context;
    }

    - (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
     if (self.userData) {
    [self.nameTxt setText:[self.userData valueForKey:@"name"]];
    [self.mobileTxt setText:[self.userData valueForKey:@"mobileNumber"]];
    [self.emailIdTxt setText:[self.userData valueForKey:@"email"]];
    }
    }

     - (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }


   - (BOOL)textFieldShouldReturn:(UITextField *)textField
   {
    [textField resignFirstResponder];
    return YES;




}
     /*

savebutton

    - (IBAction)saveBtnClick:(id)sender {

     NSManagedObjectContext *context = [self managedObjectContext];

     if (self.userData) {
    // Update existing data
    [self.userData setValue:self.nameTxt.text forKey:@"name"];
    [self.userData setValue:self.mobileTxt.text forKey:@"mobileNumber"];
    [self.userData setValue:self.emailIdTxt.text forKey:@"email"];
    UIImage *sampleimage = [UIImage imageNamed:@"icon.png"];
    NSData *dataImage = UIImageJPEGRepresentation(sampleimage, 1.0);
    [self.userData setValue:dataImage forKey:@"imageView"];

     } else {
    // Create a new data
    NSManagedObject *newDevice = [NSEntityDescription   
    insertNewObjectForEntityForName:@"Details" 
    inManagedObjectContext:context];
    [newDevice setValue:self.nameTxt.text forKey:@"name"];
    [newDevice setValue:self.mobileTxt.text forKey:@"mobileNumber"];
    [newDevice setValue:self.emailIdTxt.text forKey:@"email"];
    UIImage *sampleimage = [UIImage imageNamed:@"icon.png"];
    NSData *dataImage = UIImageJPEGRepresentation(sampleimage, 1.0);
    [newDevice setValue:dataImage forKey:@"imageView"];

     }

     NSError *error = nil;
    // Save the object to persistent store
     if (![context save:&error]) {
    NSLog(@"Can't Save! %@ %@", error, [error localizedDescription]);
    }

    [self dismissViewControllerAnimated:YES completion:nil];
    }
   @end
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.