coredata

#import "ViewController.h"#import#import "Teacher.h"

#import "Student.h"

@interface ViewController ()

- (IBAction)insert:(UIButton *)sender;

- (IBAction)delete:(UIButton *)sender;

- (IBAction)update:(UIButton *)sender;

- (IBAction)select:(UIButton *)sender;

//關(guān)聯(lián)上下文,一切的增刪該查操作有context進行

@property(nonatomic,strong)NSManagedObjectContext *context;

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

self.context =[[NSManagedObjectContext alloc]initWithConcurrencyType:NSMainQueueConcurrencyType];

//關(guān)聯(lián)數(shù)據(jù)庫

//數(shù)據(jù)庫的格式為momd

NSManagedObjectModel *model =[[NSManagedObjectModel alloc]initWithContentsOfURL:[[NSBundle mainBundle] URLForResource:@"Model" withExtension:@"momd"]];

//通過文件模型去初始化數(shù)據(jù)持久化助理

NSPersistentStoreCoordinator *store =[[NSPersistentStoreCoordinator alloc]initWithManagedObjectModel:model];

//創(chuàng)建文件路徑

NSString *filePath =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject stringByAppendingPathComponent:@"model.sqlite"];

//關(guān)聯(lián)路徑

//如果需要版本迭代的話,那么要在options設(shè)置@{NSMigratePersistentStoresAutomaticallyOption:@YES,NSInferMappingModelAutomaticallyOption:@YES}并且要在一開始的時候就需要設(shè)置

[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURL fileURLWithPath:filePath ] options:@{NSMigratePersistentStoresAutomaticallyOption:@YES,NSInferMappingModelAutomaticallyOption:@YES} error:nil];

self.context.persistentStoreCoordinator =store;

NSLog(@"%@",filePath);

// Do any additional setup after loading the view, typically from a nib.

}

- (void)didReceiveMemoryWarning {

[super didReceiveMemoryWarning];

// Dispose of any resources that can be recreated.

}

//插入

- (IBAction)insert:(UIButton *)sender {

//創(chuàng)建一個學(xué)生

Student *stu1 = [NSEntityDescription insertNewObjectForEntityForName:@"Student" inManagedObjectContext:self.context];

//coredata的使用所有的增刪改操作完成之后需要保存一下

stu1.name =@"國棟";

stu1.age? =@18;

Student *stu2 = [NSEntityDescription insertNewObjectForEntityForName:@"Student" inManagedObjectContext:self.context];

//coredata的使用所有的增刪改操作完成之后需要保存一下

stu2.name =@"張凡";

stu2.age? =@20;

Student *stu3 = [NSEntityDescription insertNewObjectForEntityForName:@"Student" inManagedObjectContext:self.context];

//coredata的使用所有的增刪改操作完成之后需要保存一下

stu3.name =@"張沖";

stu3.age? =@22;

Student *stu4 = [NSEntityDescription insertNewObjectForEntityForName:@"Student" inManagedObjectContext:self.context];

//coredata的使用所有的增刪改操作完成之后需要保存一下

stu4.name =@"張華";

stu4.age? =@24;

Teacher *teacher1 =[NSEntityDescription insertNewObjectForEntityForName:@"Teacher" inManagedObjectContext:self.context];

teacher1.name =@"太皇太后";

teacher1.cosure=@"ios";

//? ? teacher1.myStudent =[NSSet setWithObjects:stu1,stu2,stu3,stu4, nil];

[teacher1 addMyStudent:[NSSet setWithObjects:stu1,stu2,stu3,stu4, nil]];

//? ? NSLog(@"集合的內(nèi)容%@",teacher1);

[self.context save:nil];

}

//刪除

- (IBAction)delete:(UIButton *)sender {

NSFetchRequest *request =[NSFetchRequest fetchRequestWithEntityName:@"Student"];

NSPredicate *pre =[NSPredicate predicateWithFormat:@"name LIKE %@",@"國*"];

request.predicate=pre;

NSArray *array=[self.context executeFetchRequest:request error:nil];

for (Student *stu in array) {

[self.context deleteObject:stu];

[self.context save:nil];

}

}

//跟新

- (IBAction)update:(UIButton *)sender {

//1.創(chuàng)建查詢提

NSFetchRequest *requset =[NSFetchRequest fetchRequestWithEntityName:@"Student"];

//2. 設(shè)置查詢條件(這一步可有可無,根據(jù)需求來決定)

NSPredicate *pre =[NSPredicate predicateWithFormat:@"name =%@",@"張凡"];

//3.用請求體點出條件.

requset.predicate=pre;

NSArray *array=? [self.context executeFetchRequest:requset error:nil];

for (Student *stu in array) {

//修改

stu.name =@"張展";

[self.context save:nil];

//NSLog(@"%@,%@",stu.name,stu.age);

}

}

//查詢

- (IBAction)select:(UIButton *)sender {

/**

*1.創(chuàng)建查詢提

2. 設(shè)置查詢條件(這一步可有可無,根據(jù)需求來決定)

2.1 查詢:經(jīng)常用到的有三種,第一種直接查詢.(name=張三)

第二種模糊查? NSPredicate *predicate =[NSPredicate predicateWithFormat:@"name CONTAINS %@",@"張"];

第三種:以什么結(jié)尾或以聲明開頭: NSPredicate *pre =[NSPredicate predicateWithFormat:@"name LIKE %@",@"*棟"];

用請求體點出條件.

3. 用context去執(zhí)行查詢請求 并用數(shù)組接受

*/

//nsfetchrequest

//創(chuàng)建查詢學(xué)生表的請求體

//? ? NSFetchRequest *request =[NSFetchRequest fetchRequestWithEntityName:@"Student"];

//? ? //(第一種)查詢年齡為20歲的人

//? ? /** 謂詞*/

//? ? NSPredicate *predicate =[NSPredicate predicateWithFormat:@"age =%@",@20];

//? ? //加入謂詞條件

//? ? request.predicate =predicate;

//****************************

//(第二種)查詢姓張的人

//? ? NSPredicate *predicate =[NSPredicate predicateWithFormat:@"name CONTAINS %@",@"張"];

//? ? request.predicate=predicate;

//(第三種)查詢名子以棟結(jié)尾的人

//? ? NSPredicate *pre =[NSPredicate predicateWithFormat:@"name LIKE %@",@"*棟"];

//? ? request.predicate=pre;

//********************

//(第四種)按年齡排序

//? ? NSSortDescriptor *sort =[NSSortDescriptor sortDescriptorWithKey:@"age" ascending:YES];

//? ? ? ? NSPredicate *predicate =[NSPredicate predicateWithFormat:@"name CONTAINS %@",@"張"];

//? ? ? ? request.predicate=predicate;

//? ? request.sortDescriptors=@[sort];

//執(zhí)行查詢操作

//? NSArray *array=? [self.context executeFetchRequest:request error:nil];

//? ? for (Student *stu in array) {

//? ? ? ? NSLog(@"%@ %@ %@",stu.name,stu.age,stu.number);

//? ? }

//查詢老師表

NSFetchRequest *request =[NSFetchRequest fetchRequestWithEntityName:@"Teacher"];

NSArray *array =[self.context executeFetchRequest:request error:nil];

for (Teacher *tea in array) {

for (Student *stu in tea.myStudent) {

NSLog(@"%@的學(xué)生 %@ %@ %@",tea.name,stu.name,stu.age,stu.number);

}

}

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市俯抖,隨后出現(xiàn)的幾起案子烂翰,更是在濱河造成了極大的恐慌寓盗,老刑警劉巖慎菲,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件展运,死亡現(xiàn)場離奇詭異顶别,居然都是意外死亡些阅,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門舀寓,熙熙樓的掌柜王于貴愁眉苦臉地迎上來胆数,“玉大人,你說我怎么就攤上這事互墓”啬幔” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長判莉。 經(jīng)常有香客問我豆挽,道長,這世上最難降的妖魔是什么券盅? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任帮哈,我火速辦了婚禮,結(jié)果婚禮上锰镀,老公的妹妹穿的比我還像新娘娘侍。我一直安慰自己,他們只是感情好泳炉,可當(dāng)我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布私蕾。 她就那樣靜靜地躺著,像睡著了一般胡桃。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上磕潮,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天翠胰,我揣著相機與錄音,去河邊找鬼自脯。 笑死之景,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的膏潮。 我是一名探鬼主播锻狗,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼焕参!你這毒婦竟也來了轻纪?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤叠纷,失蹤者是張志新(化名)和其女友劉穎刻帚,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體涩嚣,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡崇众,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了航厚。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片顷歌。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖幔睬,靈堂內(nèi)的尸體忽然破棺而出眯漩,到底是詐尸還是另有隱情,我是刑警寧澤溪窒,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布坤塞,位于F島的核電站冯勉,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏摹芙。R本人自食惡果不足惜灼狰,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望浮禾。 院中可真熱鬧交胚,春花似錦、人聲如沸盈电。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽匆帚。三九已至熬词,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間吸重,已是汗流浹背互拾。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留嚎幸,地道東北人颜矿。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像嫉晶,于是被迫代替她去往敵國和親骑疆。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容