一. 5種方案
plist文件(屬性列表)
preference(偏好設(shè)置)
NSKeyedArchiver(歸檔)
SQLite 3
CoreData
1. plist文件(plist文件是將某些特定的類,通過XML文件的方式保存在目錄中)
可以被序列化的類型:NSArray; NSMutableArray; NSDictionary;NSMutableDictionary; NSData; NSMutableData; NSString; NSMutableString; NSNumber; NSDate;
//獲取文件的路徑
NSString?*path?=?NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject;
NSString?*fileName?=?[path?stringByAppendingPathComponent:@"12345.plist"];
//存儲數(shù)據(jù)
NSArray?*array?=?@[@"12",?@"345",?@"6789"];
[array?writeToFile:fileName?atomically:YES];
//讀取文件數(shù)據(jù)
NSArray?*result?=?[NSArray?arrayWithContentsOfFile:fileName];
NSLog(@"%@",?result);
//注意點:1>只有以上列出的類型才能使用plist文件存儲。
2>存儲時使用writeToFile: atomically:方法。 其中atomically表示是否需要先寫入一個輔助文件,再把輔助文件拷貝到目標文件地址。這是更安全的寫入文件方法,一般都寫YES。
3>讀取時使用arrayWithContentsOfFile:方法
2.?preference(NSUserDefaults)
NSUserDefaults適合存儲輕量級的本地數(shù)據(jù),支持的數(shù)據(jù)類型有:NSNumbe (NSInteger、float、double),NSString,NSDate,NSArray,NSDictionary,BOOL,NSData
偏好設(shè)置是專門保存應(yīng)用的配置信息的,如保存用戶名、密碼、字體大小、是否登陸等設(shè)置,一般不要在偏好設(shè)置保存其他數(shù)據(jù)
//1.獲得NSUserDefaults文件(偏好設(shè)置是專門用來保存應(yīng)用程序的配置信息的,一般不要在偏好設(shè)置中保存其他數(shù)據(jù))
NSUserDefaults?*userDefaults?=?[NSUserDefaults?standardUserDefaults];
//2.向文件中寫入內(nèi)容(偏好設(shè)置會將所有數(shù)據(jù)保存到同一個文件中。即preference目錄下的一個以此應(yīng)用包名來命名的plist文件)
[userDefaults?setObject:@"AAA"forKey:@"name"];
[userDefaults?setObject:@"123" forKey:@"password"];
[userDefaults?setBool:YES forKey:@"sex"];
//3.立即同步(如果沒有調(diào)用synchronize方法,系統(tǒng)會根據(jù)I/O情況不定時刻地保存到文件中。所以如果需要立即寫入文件的就必須調(diào)用synchronize方法)
[userDefaults?synchronize];
//4.讀取文件
NSString?*name?=?[userDefaults?objectForKey:@"name"];
BOOL?sex?=?[userDefaults?objectForKey:@"sex"];
NSString *password?=?[userDefaults?objectForKey:@"password"];
NSLog(@"%@,?%d,?%@",?name,?sex,?password);
3.?NSKeyedArchiver歸檔解檔(存儲自定義對象)
歸檔在iOS中是另一種形式的序列化,只要遵循了NSCoding協(xié)議的對象都可以通過它實現(xiàn)序列化。由于決大多數(shù)支持存儲數(shù)據(jù)的Foundation和Cocoa Touch類都遵循了NSCoding協(xié)議,因此,對于大多數(shù)類來說,歸檔相對而言還是比較容易實現(xiàn)的
//1.遵循NSCoding協(xié)議
NSCoding協(xié)議聲明了兩個方法,這兩個方法都是必須實現(xiàn)的。一個用來說明如何將對象編碼到歸檔中,另一個說明如何進行解檔來獲取一個新對象。
遵循協(xié)議和設(shè)置屬性:?
??@interface?Person?:?NSObject???//2.設(shè)置屬性
??@property?(strong,?nonatomic)?UIImage?*avatar;
??@property?(copy,?nonatomic)?NSString?*name;
??@property?(assign,?nonatomic)?NSInteger?age;
??@end
實現(xiàn)協(xié)議方法:
?//解檔
??-?(id)initWithCoder:(NSCoder?*)aDecoder?{
??????if([superinit])?{
??????????self.avatar?=?[aDecoder?decodeObjectForKey:@"avatar"];
??????????self.name?=?[aDecoder?decodeObjectForKey:@"name"];
??????????self.age?=?[aDecoder?decodeIntegerForKey:@"age"];
??????}
??????returnself;
??}
??//歸檔
??-?(void)encodeWithCoder:(NSCoder?*)aCoder?{
??????[aCoder?encodeObject:self.avatar?forKey:@"avatar"];
??????[aCoder?encodeObject:self.name?forKey:@"name"];
??????[aCoder?encodeInteger:self.age?forKey:@"age"];
??}
注意
如果需要歸檔的類是某個自定義類的子類時,就需要在歸檔和解檔之前先實現(xiàn)父類的歸檔和解檔方法。即 [super encodeWithCoder:aCoder] 和 [super initWithCoder:aDecoder] 方法;
//2.使用
//需要把對象歸檔是調(diào)用NSKeyedArchiver的工廠方法 archiveRootObject: toFile: 方法
?NSString?*file?=?[NSSearch PathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject?stringByAppendingPathComponent:@"person.data"];
??Person?*person?=?[[Person?alloc]?init];
??person.avatar?=?self.avatarView.image;
??person.name?=?self.nameField.text;
??person.age?=?[self.ageField.text?integerValue];
??[NSKeyedArchiver?archiveRootObject:person?toFile:file];
//需要從文件中解檔對象就調(diào)用NSKeyedUnarchiver的一個工廠方法 unarchiveObjectWithFile: 即可。
??NSString?*file?=?[NSSearch PathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject?stringByAppendingPathComponent:@"person.data"];
??Person?*person?=?[NSKeyedUnarchiver?unarchiveObjectWithFile:file];
??if(person)?{
?????self.avatarView.image?=?person.avatar;
?????self.nameField.text?=?person.name;
?????self.ageField.text?=?[NSString?stringWithFormat:@"%ld",?person.age];
??}
注意
1>必須遵循并實現(xiàn)NSCoding協(xié)議
2>保存文件的擴展名可以任意指定
3>繼承時必須先調(diào)用父類的歸檔解檔方法
4.?SQLite3
之前的所有存儲方法,都是覆蓋存儲。如果想要增加一條數(shù)據(jù)就必須把整個文件讀出來,然后修改數(shù)據(jù)后再把整個內(nèi)容覆蓋寫入文件。所以它們都不適合存儲大量的內(nèi)容
1>字段類型
表面上SQLite將數(shù)據(jù)分為以下幾種類型:integer : 整數(shù) ?real : 實數(shù)(浮點數(shù))text : 文本字符串 ?blob : 二進制數(shù)據(jù),比如文件,圖片之類的
實際上SQLite是無類型的。即不管你在創(chuàng)表時指定的字段類型是什么,存儲是依然可以存儲任意類型的數(shù)據(jù)。而且在創(chuàng)表時也可以不指定字段類型。SQLite之所以什么類型就是為了良好的編程規(guī)范和方便開發(fā)人員交流,所以平時在使用時最好設(shè)置正確的字段類型!主鍵必須設(shè)置成integer
2>添加庫文件
在iOS中要使用SQLite3,需要添加庫文件:libsqlite3.dylib并導(dǎo)入主頭文件,這是一個C語言的庫
3>使用
//1.操作數(shù)據(jù)庫之前必須先指定數(shù)據(jù)庫文件和要操作的表,所以使用SQLite3,首先要打開數(shù)據(jù)庫文件,然后指定或創(chuàng)建一張表
/***??打開數(shù)據(jù)庫并創(chuàng)建一個表*/
-?(void)openDatabase?{
???//1.設(shè)置文件名
???NSString?*filename?=?[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject?stringByAppendingPathComponent:@"person.db"];
???//2.打開數(shù)據(jù)庫文件,如果沒有會自動創(chuàng)建一個文件
???NSInteger?result?=?sqlite3_open(filename.UTF8String,?&_sqlite3);
???if(result?==?SQLITE_OK)?{
???????NSLog(@"打開數(shù)據(jù)庫成功!");
???????//3.創(chuàng)建一個數(shù)據(jù)庫表
???????char?*errmsg?=?NULL;
???????sqlite3_exec(_sqlite3,?"CREATE?TABLE?IF?NOT?EXISTS?t_person(id?integer?primary?key?autoincrement,?name?text,?age?integer)",?NULL,?NULL,?&errmsg);
???????if(errmsg)?{
???????????NSLog(@"錯誤:%s",?errmsg);
???????}?else{
???????????NSLog(@"創(chuàng)表成功!");
???????}
???}?else{
???????NSLog(@"打開數(shù)據(jù)庫失敗!");
???}
}
/*** ?往表中插入數(shù)據(jù)*/
-?(void)insertData?{
NSString?*nameStr;
NSInteger?age;
for(NSInteger?i?=?0;?i?<?1000;?i++)?{
??nameStr?=?[NSString?stringWithFormat:@"Bourne-%d",?arc4random_uniform(10000)];
??age?=?arc4random_uniform(80)?+?20;
??NSString?*sql?=?[NSString?stringWithFormat:@"INSERT?INTO?t_person?(name,?age)?VALUES('%@',?'%ld')",?nameStr,?age];
??char?*errmsg?=?NULL;
??sqlite3_exec(_sqlite3,?sql.UTF8String,?NULL,?NULL,?&errmsg);
??if(errmsg)?{
??????NSLog(@"錯誤:%s",?errmsg);
??}
}
NSLog(@"插入完畢!");
}
/**
*??從表中讀取數(shù)據(jù)到數(shù)組中
*sqlite3_prepare_v2() : 檢查sql的合法性
*sqlite3_step() : 逐行獲取查詢結(jié)果,不斷重復(fù),直到最后一條記錄
*sqlite3_coloum_xxx() : 獲取對應(yīng)類型的內(nèi)容,iCol對應(yīng)的就是SQL語句中字段的順序,從0開始。根據(jù)實際查詢字段的屬性,使用sqlite3_column_xxx取得對應(yīng)的內(nèi)容即可。
*sqlite3_finalize() : 釋放stmt
*/
-?(void)readData?{
???NSMutableArray?*mArray?=?[NSMutableArray?arrayWithCapacity:1000];
???char?*sql?=?"select?name,?age?from?t_person;";
???sqlite3_stmt?*stmt;
???NSInteger?result?=?sqlite3_prepare_v2(_sqlite3,?sql,?-1,?&stmt,?NULL);
???if(result?==?SQLITE_OK)?{
???????while(sqlite3_step(stmt)?==?SQLITE_ROW)?{
???????????char?*name?=?(char?*)sqlite3_column_text(stmt,?0);
???????????NSInteger?age?=?sqlite3_column_int(stmt,?1);
???????????//創(chuàng)建對象
???????????Person?*person?=?[Person?personWithName:[NSString?stringWithUTF8String:name]?Age:age];
???????????[mArray?addObject:person];
???????}
???????self.dataList?=?mArray;
???}
???sqlite3_finalize(stmt);
}
4> 總結(jié)
總得來說,SQLite3的使用還是比較麻煩的,因為都是些c語言的函數(shù),理解起來有些困難。不過在一般開發(fā)過程中,使用的都是第三方開源庫 FMDB,封裝了這些基本的c語言方法,使得我們在使用時更加容易理解,提高開發(fā)效率
5.FMDB
1>FMDB是iOS平臺的SQLite數(shù)據(jù)庫框架,它是以O(shè)C的方式封裝了SQLite的C語言API,它相對于cocoa自帶的C語言框架有如下的優(yōu)點:
使用起來更加面向?qū)ο螅∪チ撕芏嗦闊⑷哂嗟腃語言代碼
對比蘋果自帶的Core Data框架,更加輕量級和靈活
提供了多線程安全的數(shù)據(jù)庫操作方法,有效地防止數(shù)據(jù)混亂
2> FMDB有三個主要的類:
FMDatabase
一個FMDatabase對象就代表一個單獨的SQLite數(shù)據(jù)庫,用來執(zhí)行SQL語句
FMResultSet
使用FMDatabase執(zhí)行查詢后的結(jié)果集
FMDatabaseQueue
用于在多線程中執(zhí)行多個查詢或更新,它是線程安全的
3> 打開數(shù)據(jù)庫
和c語言框架一樣,F(xiàn)MDB通過指定SQLite數(shù)據(jù)庫文件路徑來創(chuàng)建FMDatabase對象,但FMDB更加容易理解,使用起來更容易,使用之前一樣需要導(dǎo)入sqlite3.dylib。打開數(shù)據(jù)庫方法如下:
NSString?*path?=?[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject?stringByAppendingPathComponent:@"person.db"];
FMDatabase?*database?=?[FMDatabase?databaseWithPath:path];????
if(![database?open])?{
????NSLog(@"數(shù)據(jù)庫打開失敗!");
}
//值得注意的是,Path的值可以傳入以下三種情況:
//1.具體文件路徑,如果不存在會自動創(chuàng)建
//2.空字符串@"",會在臨時目錄創(chuàng)建一個空的數(shù)據(jù)庫,當FMDatabase連接關(guān)閉時,數(shù)據(jù)庫文件也被刪除
//3.nil,會創(chuàng)建一個內(nèi)存中臨時數(shù)據(jù)庫,當FMDatabase連接關(guān)閉時,數(shù)據(jù)庫會被銷毀
4> 更新
在FMDB中,除查詢以外的所有操作,都稱為“更新”, 如:create、drop、insert、update、delete等操作,使用executeUpdate:方法執(zhí)行更新:
//常用方法有以下3種:???
-?(BOOL)executeUpdate:(NSString*)sql,?...
-?(BOOL)executeUpdateWithFormat:(NSString*)format,?...
-?(BOOL)executeUpdate:(NSString*)sql?withArgumentsInArray:(NSArray?*)arguments
//示例
[database?executeUpdate:@"CREATE?TABLE?IF?NOT?EXISTS?t_person(id?integer?primary?key?autoincrement,?name?text,?age?integer)"];???
//或者??
[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES(?,??)",?@"Bourne",?[NSNumber?numberWithInt:42]];
5>查詢,查詢方法也有3種
-?(FMResultSet?*)executeQuery:(NSString*)sql,?...
-?(FMResultSet?*)executeQueryWithFormat:(NSString*)format,?...
-?(FMResultSet?*)executeQuery:(NSString?*)sql?withArgumentsInArray:(NSArray?*)arguments
//1.執(zhí)行查詢
FMResultSet?*result?=?[database?executeQuery:@"SELECT?*?FROM?t_person"];
//2.遍歷結(jié)果集
while([result?next])?{
????NSString?*name?=?[result?stringForColumn:@"name"];
????int?age?=?[result?intForColumn:@"age"];
}
6>線程安全
在多個線程中同時使用一個FMDatabase實例是不明智的。不要讓多個線程分享同一個FMDatabase實例,它無法在多個線程中同時使用。 如果在多個線程中同時使用一個FMDatabase實例,會造成數(shù)據(jù)混亂等問題。所以,請使用 FMDatabaseQueue,它是線程安全的。以下是使用方法:
創(chuàng)建隊列。
1FMDatabaseQueue?*queue?=?[FMDatabaseQueue?databaseQueueWithPath:aPath];
使用隊列
[queue?inDatabase:^(FMDatabase?*database)?{????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_1",?[NSNumber?numberWithInt:1]];????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_2",?[NSNumber?numberWithInt:2]];????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_3",?[NSNumber?numberWithInt:3]];??????
??????????FMResultSet?*result?=?[database?executeQuery:@"select?*?from?t_person"];????
?????????while([result?next])?{???
?????????}????
}];
而且可以輕松地把簡單任務(wù)包裝到事務(wù)里:
[queue?inTransaction:^(FMDatabase?*database,?BOOL?*rollback)?{????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_1",?[NSNumber?numberWithInt:1]];????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_2",?[NSNumber?numberWithInt:2]];????
??????????[database?executeUpdate:@"INSERT?INTO?t_person(name,?age)?VALUES?(?,??)",?@"Bourne_3",?[NSNumber?numberWithInt:3]];??????
??????????FMResultSet?*result?=?[database?executeQuery:@"select?*?from?t_person"];????
?????????????while([result?next])?{???
?????????????}???
???????????//回滾
???????????*rollback?=?YES;??
????}];
6.CoreData的簡單使用
準備
創(chuàng)建數(shù)據(jù)庫
新建文件,選擇CoreData->DataModel
添加實體(表),Add Entity
給表中添加屬性,點擊Attributes下方的‘+’號
創(chuàng)建模型文件
新建文件,選擇CoreData->NSManaged Object subclass
根據(jù)提示,選擇實體
通過代碼,關(guān)聯(lián)數(shù)據(jù)庫和實體:
- (void)viewDidLoad {?
?[superviewDidLoad];
/*
? ? * 關(guān)聯(lián)的時候,如果本地沒有數(shù)據(jù)庫文件,Coreadata自己會創(chuàng)建
? ? */// 1. 上下文NSManagedObjectContext*context = [[NSManagedObjectContextalloc] init];
// 2. 上下文關(guān)連數(shù)據(jù)庫
// 2.1 model模型文件NSManagedObjectModel*model = [NSManagedObjectModelmergedModelFromBundles:nil];
// 2.2 持久化存儲調(diào)度器// 持久化,把數(shù)據(jù)保存到一個文件,而不是內(nèi)存NSPersistentStoreCoordinator*store = [[NSPersistentStoreCoordinatoralloc] initWithManagedObjectModel:model];
// 2.3 設(shè)置CoreData數(shù)據(jù)庫的名字和路徑
NSString*doc = [NSSearch PathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) lastObject];
NSString*sqlitePath = [doc stringByAppendingPathComponent:@"company.sqlite"]; ??
[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURL fileURLWithPath:sqlitePath] options:nil error:nil];? ? ? ??
context.persistentStoreCoordinator = store;? ?
?_context = context;
}
CoreData的基本操作(CURD)
1>添加元素 - Create
-(IBAction)addEmployee{
// 創(chuàng)建一個員工對象 //Employee *emp = [[Employee alloc] init];?不能用此方法創(chuàng)建Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_context];?
?emp.name =@"wangwu";?
?emp.height = @1.80;?
?emp.birthday = [NSDatedate];
// 直接保存數(shù)據(jù)庫NSError*error =nil; [_context save:&error];
if(error) {
NSLog(@"%@",error);?
?}
}
2>讀取數(shù)據(jù) - Read
-(IBAction)readEmployee{
// 1.FetchRequest 獲取請求對象
NSFetchRequest*request = [NSFetchRequestfetchRequestWithEntityName:@"Employee"];
// 2.設(shè)置過濾條件
// 查找
zhangsanNSPredicate*pre = [NSPredicatepredicateWithFormat:@"name = %@",@"zhangsan"];
?request.predicate = pre;
// 3.設(shè)置排序
// 身高的升序排序
NSSortDescriptor*heigtSort = [NSSortDescriptorsortDescriptorWithKey:@"height"ascending:NO]; request.sortDescriptors = @[heigtSort];
// 4.執(zhí)行請求NSError*error =nil;NSArray*emps = [_context executeFetchRequest:request error:&error];
if(error) {NSLog(@"error"); }
//NSLog(@"%@",emps);
//遍歷員工
for(Employee *empinemps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);
?}
}
3>修改數(shù)據(jù) - Update
-(IBAction)updateEmployee{
// 改變zhangsan的身高為2m
// 1.查找到zhangsan
// 1.1FectchRequest 抓取請求對象
NSFetchRequest*request = [NSFetchRequestfetchRequestWithEntityName:@"Employee"];
// 1.2設(shè)置過濾條件
// 查找
zhangsanNSPredicate*pre = [NSPredicatepredicateWithFormat:@"name = %@",@"zhangsan"];?
?request.predicate = pre;
// 1.3執(zhí)行請求
NSArray*emps = [_context executeFetchRequest:request error:nil];
// 2.更新身高
for(Employee *einemps) {?
?e.height = @2.0;?
?}
// 3.保存NSError*error =nil; [_context save:&error];if(error) {
NSLog(@"%@",error);?
?}
}
4>刪除數(shù)據(jù) - Delete
-(IBAction)deleteEmployee{
// 刪除 lisi
// 1.查找lisi
// 1.1FectchRequest 抓取請求對象
NSFetchRequest*request = [NSFetchRequestfetchRequestWithEntityName:@"Employee"];
// 1.2設(shè)置過濾條件
// 查找
zhangsanNSPredicate*pre = [NSPredicatepredicateWithFormat:@"name = %@",@"lisi"]; request.predicate = pre;
// 1.3執(zhí)行請求
NSArray*emps = [_context executeFetchRequest:request error:nil];
// 2.刪除for(Employee *einemps) { [_context deleteObject:e]; }
// 3.保存NSError*error =nil; [_context save:&error];if(error) {NSLog(@"%@",error); }}
5>CoreData的模糊查詢
-(IBAction)readEmployee{
// 1.FectchRequest 抓取請求對象
NSFetchRequest*request = [NSFetchRequestfetchRequestWithEntityName:@"Employee"];
// 2.設(shè)置排序
// 按照身高的升序排序
NSSortDescriptor*heigtSort = [NSSortDescriptorsortDescriptorWithKey:@"height"ascending:NO]; request.sortDescriptors = @[heigtSort];
// 3.模糊查詢
// 3.1 名字以"wang"開頭
// NSPredicate *pre = [NSPredicate predicateWithFormat:@"name BEGINSWITH %@",@"wangwu1"];
// request.predicate = pre;
// 名字以"1"結(jié)尾
// NSPredicate *pre = [NSPredicate predicateWithFormat:@"name ENDSWITH %@",@"1"];
// request.predicate = pre;
// 名字包含"wu1"
// NSPredicate *pre = [NSPredicate predicateWithFormat:@"name CONTAINS %@",@"wu1"];
// request.predicate = pre;
// like 匹配
NSPredicate*pre = [NSPredicatepredicateWithFormat:@"name like %@",@"*wu12"];
?request.predicate = pre;
// 4.執(zhí)行請求NSError*error =nil;
NSArray*emps = [_context executeFetchRequest:request error:&error];if(error) {NSLog(@"error"); }
//遍歷員工
for(Employee *empinemps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);?
?}
}
6>分頁查詢
-(void)pageSeacher{
// 1. FectchRequest 抓取請求對象
NSFetchRequest*request = [NSFetchRequestfetchRequestWithEntityName:@"Employee"];
// 2. 設(shè)置排序
// 身高的升序排序
NSSortDescriptor*heigtSort = [NSSortDescriptorsortDescriptorWithKey:@"height"ascending:NO]; request.sortDescriptors = @[heigtSort];
// 3. 分頁查詢
// 總有共有15數(shù)據(jù)
// 每次獲取6條數(shù)據(jù)
// 第一頁 0,6
// 第二頁 6,6
// 第三頁 12,6 3條數(shù)據(jù)
// 3.1 分頁的起始索引
request.fetchOffset =12;
// 3.2 分頁的條數(shù)request.fetchLimit =6;
// 4. 執(zhí)行請求NSError*error =nil;
NSArray*emps = [_context executeFetchRequest:request error:&error];
if(error) {
NSLog(@"error");
?}
// 5. 遍歷員工for(Employee *empinemps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);?
?}
}
7>多個數(shù)據(jù)庫的使用(創(chuàng)建多個數(shù)據(jù)庫,即創(chuàng)建多個DataModel ,一個數(shù)據(jù)庫對應(yīng)一個上下文,需要根據(jù)bundle名創(chuàng)建上下文,添加或讀取信息,需要根據(jù)不同的上下文,訪問不同的實體)
//7.1 關(guān)聯(lián)數(shù)據(jù)庫
- (void)viewDidLoad {
?[superviewDidLoad];
// 一個數(shù)據(jù)庫對應(yīng)一個上下文
_companyContext = [selfsetupContextWithModelName:@"Company"];?
?_weiboContext = [selfsetupContextWithModelName:@"Weibo"];}
/**
*? 根據(jù)模型文件,返回一個上下文
*/
-(NSManagedObjectContext*)setupContextWithModelName:(NSString*)modelName{
// 1. 上下文NSManagedObjectContext*context = [[NSManagedObjectContext alloc] init];
// 2. 上下文關(guān)連數(shù)據(jù)庫
// 2.1 model模型文件
// 注意:如果使用下面的方法,如果 bundles為nil 會把bundles里面的所有模型文件的表放在一個數(shù)據(jù)庫
//NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
// 改為以下的方法獲取:NSURL*companyURL = [[NSBundle mainBundle] URLForResource:modelName withExtension:@"momd"];
NSManagedObjectModel*model = [[NSManagedObjectModel alloc] initWithContentsOfURL:companyURL];
// 2.2 持久化存儲調(diào)度器// 持久化,把數(shù)據(jù)保存到一個文件,而不是內(nèi)存NSPersistentStoreCoordinator*store = [[NSPersistentStoreCoordinatoralloc] initWithManagedObjectModel:model];
// 2.3 告訴Coredata數(shù)據(jù)庫的名字和路徑
NSString*doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) lastObject];
NSString*sqliteName = [NSStringstringWithFormat:@"%@.sqlite",modelName];
NSString*sqlitePath = [doc stringByAppendingPathComponent:sqliteName];? ?
?[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURLfileURLWithPath:sqlitePath] options:nilerror:nil];? ? ? ? context.persistentStoreCoordinator = store;
// 3. 返回上下文
returncontext;}
//2.添加元素
-(IBAction)addEmployee{
// 1. 添加員工Employee *emp = [NSEntityDescription
insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_companyContext];?
?emp.name =@"lisi";?
?emp.height = @2.3;?
?emp.birthday = [NSDatedate];
// 直接保存數(shù)據(jù)庫[_companyContext save:nil];
// 2. 發(fā)微博
Status *status =[NSEntityDescription insertNewObjectForEntityForName:@"Status" inManagedObjectContext:_weiboContext];?
?status.text =@"發(fā)了條微博!";?
?status.createDate = [NSDatedate];
?[_weiboContext save:nil];
}
二.沙盒機制
iOS程序默認情況下只能訪問程序自己的目錄,這個目錄被稱為“沙盒”
1>沙盒文件下的目錄結(jié)構(gòu)
?"應(yīng)用程序包"
?Documents
?Library
????Caches
????Preferences
? ?tmp
2>目錄特性
"應(yīng)用程序包": 這里面存放的是應(yīng)用程序的源文件,包括資源文件和可執(zhí)行文件。
NSString?*path?=?[[NSBundle?mainBundle]?bundlePath]; ? NSLog(@"%@",?path);
Documents: 最常用的目錄,iTunes同步該應(yīng)用時會同步此文件夾中的內(nèi)容,適合存儲重要數(shù)據(jù)。
NSString?*path?=?NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,?NSUserDomainMask,?YES).firstObject; ? NSLog(@"%@",?path);
Library/Caches: iTunes不會同步此文件夾,適合存儲體積大,不需要備份的非重要數(shù)據(jù)。
NSString?*path?=?NSSearchPathForDirectoriesInDomains(NSCachesDirectory,?NSUserDomainMask,?YES).firstObject; ? NSLog(@"%@",?path);
Library/Preferences: iTunes同步該應(yīng)用時會同步此文件夾中的內(nèi)容,通常保存應(yīng)用的設(shè)置信息
tmp: iTunes不會同步此文件夾,系統(tǒng)可能在應(yīng)用沒運行時就刪除該目錄下的文件,所以此目錄適合保存應(yīng)用中的一些臨時文件,用完就刪除。
NSString?*path?=?NSTemporaryDirectory(); ?NSLog(@"%@",?path);