iOS: 转载CoreData数据库框架
iphone-CoreData的使用詳解
一、概念
1.Core Data 是數(shù)據(jù)持久化存儲(chǔ)的最佳方式
2.數(shù)據(jù)最終的存儲(chǔ)類型可以是:SQLite數(shù)據(jù)庫,XML,二進(jìn)制,內(nèi)存里,或自定義數(shù)據(jù)類型
在Mac OS X 10.5Leopard及以后的版本中,開發(fā)者也可以通過繼承NSPersistentStore類以創(chuàng)建自定義的存儲(chǔ)格式
3.好處:能夠合理管理內(nèi)存,避免使用sql的麻煩,高效
4.構(gòu)成:
(1)NSManagedObjectContext(被管理的數(shù)據(jù)上下文)
操作實(shí)際內(nèi)容(操作持久層)
作用:插入數(shù)據(jù),查詢數(shù)據(jù),刪除數(shù)據(jù)
(2)NSManagedObjectModel(被管理的數(shù)據(jù)模型)
數(shù)據(jù)庫所有表格或數(shù)據(jù)結(jié)構(gòu),包含各實(shí)體的定義信息
作用:添加實(shí)體的屬性,建立屬性之間的關(guān)系
操作方法:視圖編輯器,或代碼
(3)NSPersistentStoreCoordinator(持久化存儲(chǔ)助理)
相當(dāng)于數(shù)據(jù)庫的連接器
作用:設(shè)置數(shù)據(jù)存儲(chǔ)的名字,位置,存儲(chǔ)方式,和存儲(chǔ)時(shí)機(jī)
(4)NSManagedObject(被管理的數(shù)據(jù)記錄)
相當(dāng)于數(shù)據(jù)庫中的表格記錄
(5)NSFetchRequest(獲取數(shù)據(jù)的請求)
相當(dāng)于查詢語句
(6)NSEntityDescription(實(shí)體結(jié)構(gòu))
相當(dāng)于表格結(jié)構(gòu)
(7)后綴為.xcdatamodeld的包
里面是.xcdatamodel文件,用數(shù)據(jù)模型編輯器編輯
編譯后為.momd或.mom文件
5.依賴關(guān)系
?
?
二、基于SQLite數(shù)據(jù)庫時(shí),Core Data的簡單使用
和SQLite的區(qū)別:只能取出整個(gè)實(shí)體記錄,然后分解,之后才能得到實(shí)體的某個(gè)屬性
1.構(gòu)建流程
包括:創(chuàng)建數(shù)據(jù)上下文,創(chuàng)建數(shù)據(jù)模型,創(chuàng)建數(shù)據(jù)持久化存儲(chǔ)助理
(1)若是新建的工程,選擇空白應(yīng)用程序,next
勾選Use Core Data選項(xiàng)
此時(shí)生成的工程文件AppDelegate中,會(huì)自動(dòng)生成被管理的數(shù)據(jù)上下文等相關(guān)代碼
(2)比如AppDelegate.h文件中,自動(dòng)生成
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext; @property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel; @property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;- (void)saveContext; - (NSURL *)applicationDocumentsDirectory;方法saveContext表示:保存數(shù)據(jù)到持久層(數(shù)據(jù)庫)
方法applicationDocumentsDirectory表示:應(yīng)用程序沙箱下的Documents目錄路徑
(例如/var/mobile/Applications/5FG80A45-DFB5-4087-A1B1-41342A977E21/Documents/)
(3)比如AppDelegate.h文件中,自動(dòng)生成
@synthesize managedObjectContext = __managedObjectContext; @synthesize managedObjectModel = __managedObjectModel; @synthesize persistentStoreCoordinator = __persistentStoreCoordinator;保存數(shù)據(jù)到持久層
- (void)applicationWillTerminate:(UIApplication *)application {[self saveContext]; } - (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();} } }Documents目錄路徑
- (NSURL *)applicationDocumentsDirectory {return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject]; }被管理的數(shù)據(jù)上下文
初始化的后,必須設(shè)置持久化存儲(chǔ)助理
- (NSManagedObjectContext *)managedObjectContext {if (__managedObjectContext != nil) {return __managedObjectContext;}NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];if (coordinator != nil) {__managedObjectContext = [[NSManagedObjectContext alloc] init];[__managedObjectContext setPersistentStoreCoordinator:coordinator];}return __managedObjectContext; }?
被管理的數(shù)據(jù)模型
初始化必須依賴.momd文件路徑,而.momd文件由.xcdatamodeld文件編譯而來
- (NSManagedObjectModel *)managedObjectModel {if (__managedObjectModel != nil) {return __managedObjectModel;}NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"TestApp" withExtension:@"momd"];__managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];return __managedObjectModel; }持久化存儲(chǔ)助理
初始化必須依賴NSManagedObjectModel,之后要指定持久化存儲(chǔ)的數(shù)據(jù)類型,默認(rèn)的是NSSQLiteStoreType,即SQLite數(shù)據(jù)庫;并指定存儲(chǔ)路徑為Documents目錄下,以及數(shù)據(jù)庫名稱
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {if (__persistentStoreCoordinator != nil) {return __persistentStoreCoordinator;}NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"TestApp.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; }
如果不是新工程,也可以自己寫入相關(guān)代碼
(4)此外還生成了TestApp.xcdatamodeld文件
(5)還自動(dòng)鏈接了CoreData.framework
(6)在預(yù)編譯頭.pch文件中,加入導(dǎo)入了CoreData.h頭文件
#import <CoreData/CoreData.h>?
2.創(chuàng)建數(shù)據(jù)模型(數(shù)據(jù)模型編輯器操作)
(1)創(chuàng)建實(shí)體
選中.xcodedatamodel對象
在右邊的數(shù)據(jù)模型編輯器的底部工具欄點(diǎn)擊Add Entity添加實(shí)體
在最右側(cè)欄對實(shí)體命名
(2)創(chuàng)建實(shí)體屬性
選中實(shí)體,點(diǎn)擊底部工具欄的Add Attribute添加屬性
選中新添加的屬性,對屬性進(jìn)行命名,并設(shè)置屬性的數(shù)據(jù)類型Attribute Type
(3)為兩個(gè)實(shí)體建立關(guān)系
選中一個(gè)實(shí)體,在底部工具欄點(diǎn)擊Add Relationship添加關(guān)系
選中新關(guān)系,對關(guān)系添加名稱,目標(biāo)destination設(shè)置為另個(gè)實(shí)體
(4)建立返回關(guān)系
(當(dāng)你建立一個(gè)目標(biāo)關(guān)系,最好建立一個(gè)返回關(guān)系)
在另一個(gè)實(shí)體中建立一個(gè)關(guān)系并命名,設(shè)置目標(biāo)對象為這之前的實(shí)體
并在Inverse屬性選這之前的關(guān)系名稱
?
(5)設(shè)置兩個(gè)關(guān)系的刪除規(guī)則Delete Rule,都為關(guān)聯(lián)模式
關(guān)聯(lián)模式cascade:其中一個(gè)數(shù)據(jù)被刪除,另一個(gè)實(shí)體中的數(shù)據(jù)也會(huì)跟著刪除
(6)最終兩個(gè)對象的關(guān)系圖為
切換Editor Stype按鈕
會(huì)看到另一種編輯方式:
?3.插入數(shù)據(jù)
在AppDelegate.m的application:didFinishLaunchingWithOptions:方法里,調(diào)用自定義方法
insertCoreData插入數(shù)據(jù),代碼如下:
- (void)insertCoreData {NSManagedObjectContext *context = [self managedObjectContext];NSManagedObject *contactInfo = [NSEntityDescription insertNewObjectForEntityForName:@"ContactInfo" inManagedObjectContext:context];[contactInfo setValue:@"name B" forKey:@"name"];[contactInfo setValue:@"birthday B" forKey:@"birthday"];[contactInfo setValue:@"age B" forKey:@"age"];NSManagedObject *contactDetailInfo = [NSEntityDescription insertNewObjectForEntityForName:@"ContactDetailInfo" inManagedObjectContext:context];[contactDetailInfo setValue:@"address B" forKey:@"address"];[contactDetailInfo setValue:@"name B" forKey:@"name"];[contactDetailInfo setValue:@"telephone B" forKey:@"telephone"];[contactDetailInfo setValue:contactInfo forKey:@"info"];[contactInfo setValue:contactDetailInfo forKey:@"details"];NSError *error;if(![context save:&error]){NSLog(@"不能保存:%@",[error localizedDescription]);} }創(chuàng)建數(shù)據(jù)上下文,調(diào)用insertNewObjectForName方法,創(chuàng)建兩個(gè)數(shù)據(jù)記錄NSManagedObject,然后就可以對之前數(shù)據(jù)模型編輯視圖中定義的屬性進(jìn)行賦值。此時(shí)的數(shù)據(jù)只在內(nèi)存中被修改,最后調(diào)用數(shù)據(jù)上下文的save方法,保存到持久層
4.查詢數(shù)據(jù)
在調(diào)用了insertCoreData之后,可以調(diào)用自定的查詢方法dataFetchRequest來查詢插入的數(shù)據(jù)
- (void)dataFetchRequest {NSManagedObjectContext *context = [self managedObjectContext];NSFetchRequest *fetchRequest = [[[NSFetchRequest alloc] init] autorelease];NSEntityDescription *entity = [NSEntityDescription entityForName:@"ContactInfo" inManagedObjectContext:context];[fetchRequest setEntity:entity];NSError *error;NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];for (NSManagedObject *info in fetchedObjects) {NSLog(@"name:%@", [info valueForKey:@"name"]);NSLog(@"age:%@", [info valueForKey:@"age"]);NSLog(@"birthday:%@", [info valueForKey:@"birthday"]);NSManagedObject *details = [info valueForKey:@"details"];NSLog(@"address:%@", [details valueForKey:@"address"]);NSLog(@"telephone:%@", [details valueForKey:@"telephone"]);} }fetchRequest相當(dāng)于sql查詢語句的包裝類,需要用setEntity方法,來指定具體查詢的實(shí)體結(jié)構(gòu)(表結(jié)構(gòu))
通過NSEntityDescription的entityForName方法來,返回指向該具體實(shí)體結(jié)構(gòu)的指針
然后調(diào)用executeFetchRequest:error:方法,來執(zhí)行查詢操作,如果操作成功,則返回對應(yīng)的數(shù)據(jù)記錄數(shù)組
其中,可以通過NSManagedObject數(shù)據(jù)記錄對象里關(guān)聯(lián)的屬性,查詢另一個(gè)數(shù)據(jù)記錄對象里的屬性
5.數(shù)據(jù)模版
為每個(gè)實(shí)體生成一個(gè)NSManagedObject子類
上面設(shè)置數(shù)據(jù)和獲取數(shù)據(jù)時(shí),使用的是Key-Value方式,更好的方法是通過生成強(qiáng)類型的NSManagedObject的子類,通過類的成員屬性來訪問和獲取數(shù)據(jù)
(1)在數(shù)據(jù)編輯器視圖中選中實(shí)體對象,
選則file菜單,點(diǎn)擊new,點(diǎn)擊file...,選擇Core Data項(xiàng),選擇NSManagedObject subclass,生成該實(shí)體同名的類,
繼承于NSManagedObject
生成對應(yīng)的ContactInfo.h文件
#import <Foundation/Foundation.h> #import <CoreData/CoreData.h>@class ContactDetailInfo;@interface ContactInfo : NSManagedObject@property (nonatomic, retain) NSString * age; @property (nonatomic, retain) NSString * birthday; @property (nonatomic, retain) NSString * name; @property (nonatomic, retain) ContactDetailInfo *details;@end和ContactInfo.m文件
其中,@dynamic告訴編譯器不做處理,使編譯通過,其getter和setter方法會(huì)在運(yùn)行時(shí)動(dòng)態(tài)創(chuàng)建,由Core Data框架為此類屬性生成存取方法
#import "ContactInfo.h" #import "ContactDetailInfo.h"@implementation ContactInfo@dynamic age; @dynamic birthday; @dynamic name; @dynamic details;@end以及ContactDetailInfo.h文件
#import <Foundation/Foundation.h> #import <CoreData/CoreData.h>@class ContactInfo;@interface ContactDetailInfo : NSManagedObject@property (nonatomic, retain) NSString * address; @property (nonatomic, retain) NSString * name; @property (nonatomic, retain) NSString * telephone; @property (nonatomic, retain) ContactInfo *info;@end和ContactDetailInfo.m文件
#import "ContactDetailInfo.h" #import "ContactInfo.h"@implementation ContactDetailInfo@dynamic address; @dynamic name; @dynamic telephone; @dynamic info;@end此時(shí),數(shù)據(jù)模型編輯器視圖最右邊欄中,實(shí)體的class就變成具體的類名
之前用Key-Value的代碼就可以修改為:
#import "ContactInfo.h" #import "ContactDetailInfo.h" - (void)insertCoreData {NSManagedObjectContext *context = [self managedObjectContext];ContactInfo *contactInfo = [NSEntityDescription insertNewObjectForEntityForName:@"ContactInfo" inManagedObjectContext:context];contactInfo.name = @"name B";contactInfo.birthday = @"birthday B";contactInfo.age = @"age B";ContactDetailInfo *contactDetailInfo = [NSEntityDescription insertNewObjectForEntityForName:@"ContactDetailInfo" inManagedObjectContext:context];contactDetailInfo.address = @"address B";contactDetailInfo.name = @"name B";contactDetailInfo.telephone = @"telephone B";contactDetailInfo.info = contactInfo;contactInfo.details = contactDetailInfo;NSError *error;if(![context save:&error]){NSLog(@"不能保存:%@",[error localizedDescription]);} } - (void)dataFetchRequest {NSManagedObjectContext *context = [self managedObjectContext];NSFetchRequest *fetchRequest = [[[NSFetchRequest alloc] init] autorelease];NSEntityDescription *entity = [NSEntityDescription entityForName:@"ContactInfo" inManagedObjectContext:context];[fetchRequest setEntity:entity];NSError *error;NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];for (ContactInfo *info in fetchedObjects) {NSLog(@"name:%@", info.name);NSLog(@"age:%@", info.age);NSLog(@"birthday:%@", info.birthday);ContactDetailInfo *details = info.details;NSLog(@"address:%@", details.address);NSLog(@"telephone:%@", details.telephone);} }?
三、數(shù)據(jù)庫相關(guān)
1.打印隱藏的sql語句:
在Edit Scheme中選擇Run,之后進(jìn)入Arguments標(biāo)簽,添加參數(shù):“-com.apple.CoreData.SQLDebug 1”
2.使用SQLite存儲(chǔ)時(shí),數(shù)據(jù)庫結(jié)構(gòu)
存儲(chǔ)的SQLite數(shù)據(jù)庫表名稱:大寫“Z”加上實(shí)體名稱大寫,一個(gè)實(shí)體相當(dāng)于一張表
具體的字段名稱:大寫“Z”加上實(shí)體屬性名稱大寫
轉(zhuǎn)載于:https://www.cnblogs.com/XYQ-208910/p/4827224.html
總結(jié)
以上是生活随笔為你收集整理的iOS: 转载CoreData数据库框架的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 利用CGMutablePathRef制作
- 下一篇: Apache经常使用配置