เพื่ออธิบายขั้นตอนทั้งหมดที่คุณต้องดำเนินการเพื่อเพิ่ม 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! สนุก