CoreData

使用coreadata第一步便是coredata的創(chuàng)建.

123.gif
 //
//  ViewController.m
//  coredata
//
//  Created by zhaoguodong on 16/6/24.
//  Copyright ? 2016年 zhaoguodong. All rights reserved.
//

#import "ViewController.h"
#import "STUDENT.h"
#import "TEACHER.h"


@interface ViewController ()


//聯(lián)系上下文
@property (nonatomic ,strong)NSManagedObjectContext *context;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //初始化  NSManagedObjectContext
    self.context = [[NSManagedObjectContext alloc]initWithConcurrencyType:NSMainQueueConcurrencyType];
    
    //關(guān)聯(lián)數(shù)據(jù)庫
    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"];
    
    NSLog(@"%@",filePath);
    
    //關(guān)聯(lián)路徑
          //如果需要支持版本迭代的話那么要在options設(shè)置@{NSMigratePersistentStoresAutomaticallyOption:@YES,NSInferMappingModelAutomaticallyOption:@YES}
            //如果不想迭代設(shè)置為options nil
    [store   addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURL fileURLWithPath:filePath] options:@{NSMigratePersistentStoresAutomaticallyOption:@YES,NSInferMappingModelAutomaticallyOption:@YES} error:nil];
    
    
    self.context.persistentStoreCoordinator  = store;
    
    
    // Do any additional setup after loading the view, typically from a nib.
}

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



#pragma mark ---------coreDate的使用需要注意,所有的增刪改操作完成之后需要保存一下---
#增
- (IBAction)add:(UIButton *)sender {
    
    //創(chuàng)建一個學(xué)生
    STUDENT *stu1 = [NSEntityDescription insertNewObjectForEntityForName:@"STUDENT" inManagedObjectContext:self.context];
    stu1.name = @"光頭強";
    stu1.age = @26;
    
    
    STUDENT *stu2 = [NSEntityDescription insertNewObjectForEntityForName:@"STUDENT" inManagedObjectContext:self.context];
    stu2.name = @"??大";
    stu2.age = @6;
    
    
    STUDENT *stu3 = [NSEntityDescription insertNewObjectForEntityForName:@"STUDENT" inManagedObjectContext:self.context];
    stu3.name = @"??二";
    stu3.age = @4;
    
    STUDENT *stu4 = [NSEntityDescription insertNewObjectForEntityForName:@"STUDENT" inManagedObjectContext:self.context];
    stu4.name = @"圖圖";
    stu4.age = @1;
    
    
    //創(chuàng)建一個老師
    TEACHER *teac1 = [NSEntityDescription insertNewObjectForEntityForName:@"TEACHER" inManagedObjectContext:self.context];
    teac1.name = @"??大師";
    teac1.sex = @"雄性";

    //吧學(xué)生給老師
    teac1.myStudent =[NSSet setWithObjects:stu1,stu2,stu3,stu4, nil];
  
    [self.context save:nil];

}

#刪
- (IBAction)delete:(id)sender {
    
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"TEACHER"];
    
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name = %@",@"??大師"];
    
    request.predicate = predicate;
    
    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 {
    
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"STUDENT"];
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name = %@",@"圖圖"];
    request.predicate = predicate;
    
    NSArray *array = [self.context executeFetchRequest:request error:nil];
    
    for (STUDENT *stu in array) {
        stu.name = @"吉吉";
        [self.context save:nil];
    }
    
}

#查找
- (IBAction)search:(UIButton *)sender {

    //查詢老師表
    NSFetchRequest *request =[NSFetchRequest fetchRequestWithEntityName:@"TEACHER"];
    
       NSArray *array =  [self.context executeFetchRequest:request error:nil];
    
    for (TEACHER *teac in array) {
     
        for (STUDENT *stu in teac.myStudent) {
     //teac有個屬性 myStudent  里面就是他的所有學(xué)生
            NSLog(@"STUDENT:name=%@  age=%@",stu.name,stu.age);
        }
        NSLog(@"TEACHER:name = %@ sex:%@",teac.name,teac.sex);
    }
    
    
}


@end


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末膘婶,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌吩跋,老刑警劉巖吼鱼,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件淳玩,死亡現(xiàn)場離奇詭異,居然都是意外死亡哎榴,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門僵蛛,熙熙樓的掌柜王于貴愁眉苦臉地迎上來尚蝌,“玉大人,你說我怎么就攤上這事充尉∑裕” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵驼侠,是天一觀的道長姿鸿。 經(jīng)常有香客問我,道長倒源,這世上最難降的妖魔是什么苛预? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮笋熬,結(jié)果婚禮上热某,老公的妹妹穿的比我還像新娘。我一直安慰自己胳螟,他們只是感情好昔馋,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著旺隙,像睡著了一般绒极。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上蔬捷,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天垄提,我揣著相機與錄音榔袋,去河邊找鬼。 笑死铡俐,一個胖子當(dāng)著我的面吹牛凰兑,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播审丘,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼吏够,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了滩报?” 一聲冷哼從身側(cè)響起锅知,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎脓钾,沒想到半個月后售睹,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡可训,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年昌妹,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片握截。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡飞崖,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出谨胞,到底是詐尸還是另有隱情固歪,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布畜眨,位于F島的核電站昼牛,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏康聂。R本人自食惡果不足惜贰健,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望恬汁。 院中可真熱鬧伶椿,春花似錦、人聲如沸氓侧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽约巷。三九已至偎痛,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間独郎,已是汗流浹背踩麦。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工枚赡, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人谓谦。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓贫橙,卻偏偏與公主長得像,于是被迫代替她去往敵國和親反粥。 傳聞我的和親對象是個殘疾皇子卢肃,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

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