CoreData的基本使用

包括:

  • CoreData的初始化(非最新coredata)
  • CoreData的数据操作
  • 同一个数据库内表的关联
  • 多个数据库简单使用
1,CoreData的初始化(非最新coredata)
  • 1.1,创建数据库模型Data Model
Snip20170104_1.png
  • 1.2,创建NSManagedObject
Snip20170104_2.png
  • 1.3, 代码进行初始化
    //1,创建模型,并与文件进行关联,如果只有一个数据库,可以字节用nil表示
    //方式一:在只有一个数据库的时候
//    NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
    //方式二:在有多个数据库的时候会有多个数据库文件夹,所以需要指定特定的数据库文件夹,momd是默认数据库文件夹后缀名,如Company.momd
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"Company" withExtension:@"momd"];
    NSManagedObjectModel   *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:url];
    
    //2,创建调度器,并设置存储路径
    NSPersistentStoreCoordinator *coordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
    NSString *path = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject] stringByAppendingPathComponent:@"Company.sqlite"];
    NSURL *url01 = [NSURL fileURLWithPath:path];//指定存储的文件名
    NSError *error;
    [coordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:url01 options:nil error:&error];
    
    //3, 创建上下文,并于调度器进行关联
    NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
    context.persistentStoreCoordinator = coordinator;
2,CoreData的数据操作
  • 2.1, 增加数据
  • 多次数据添加只需要一次save即可
    //1.1, 增加数据
    Employee *employee01 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
    employee01.name = [NSString stringWithFormat:@"Jake"];
    employee01.height = @(1.59 + arc4random_uniform(6)*0.1);
    employee01.age = @(26+arc4random_uniform(4));
    
    Employee *employee02 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
    employee02.name = [NSString stringWithFormat:@"Mike"];
    employee02.height = @(1.59 + arc4random_uniform(6)*0.1);
    employee02.age = @(26+arc4random_uniform(4));
    
    NSError *errror;
    [self.context save:&errror];
    if (errror) {
        NSLog(@"%@",errror);
    }
    
    /*
     for (int i=0; i<100; i++) {
     Employee *employee = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
     employee.name = [NSString stringWithFormat:@"Jake"];
     employee.height = @(1.59 + arc4random_uniform(6)*0.1);
     employee.age = @(26+arc4random_uniform(4));
     
     Employee *employee01 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
     employee01.name = [NSString stringWithFormat:@"Mike"];
     employee01.height = @(1.59 + arc4random_uniform(6)*0.1);
     employee01.age = @(26+arc4random_uniform(4));
     
     NSError *errror;
     [self.context save:&errror];
     if (errror) {
     NSLog(@"%@",errror);
     }
     }
     */
  • 2.2, 查询数据
  • (因为删除和更新都是在查询的基础上做的,所以这里先进行查询操作)
//1, 创建请求
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
    request.predicate = [NSPredicate predicateWithFormat:@"age < 28"];
    NSSortDescriptor *sort01 = [NSSortDescriptor sortDescriptorWithKey:@"age" ascending:YES];
    request.sortDescriptors = @[sort01];
    
    //2, 执行请求,返回数据
    NSError *error;
    NSArray *array = [self.context executeFetchRequest:request error:&error];
    //        NSLog(@"%@", array);
    
    //3, 解析数据
    [array enumerateObjectsUsingBlock:^(Employee *obj, NSUInteger idx, BOOL * _Nonnull stop) {
        
        NSLog(@"%@---%@---%@",obj.name, obj.height, obj.age);
        
    }];
    
    /*
     //查找相关
     NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name BEGINSWITH %@", @"jack--1"];
     NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name ENDSWITH %@",@"4444"];
     NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name CONTAINS %@", @"zhang"];
     NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name LIKE %@", @"zha*"];
     
     //排序和数量显示
     NSSortDescriptor *heightSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:NO];
     fetchRequest.sortDescriptors = @[heightSort];
     fetchRequest.fetchOffset = 5*i;
     fetchRequest.fetchLimit = 5;
     */
  • 2.3, 删除数据
  • 注意在删除数据后需要重新保存一下才会真正的在数据库中删除
    //1, 创建请求
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
    request.predicate = [NSPredicate predicateWithFormat:@"name = %@", @"zhangzhang"];
    
    //2,执行请求
    NSError *errror;
    NSArray *array = [self.context executeFetchRequest:request error:&errror];
    
    //3,解析结果
    [array enumerateObjectsUsingBlock:^(Employee *obj, NSUInteger idx, BOOL * _Nonnull stop) {
        NSLog(@"%@---%@---%@", obj.name, obj.age, obj.height);
        [self.context deleteObject:obj];
        [self.context save:nil];
    }];
  • 2.4,更新数据
  • 更新完之后仍旧需要保存
 //1, 创建请求
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
    request.predicate = [NSPredicate predicateWithFormat:@"name = %@", @"Jake"];
    
    //2,执行请求
    NSError *errror;
    NSArray *array = [self.context executeFetchRequest:request error:&errror];
    
    //3,解析结果
    [array enumerateObjectsUsingBlock:^(Employee *obj, NSUInteger idx, BOOL * _Nonnull stop) {
        
        NSLog(@"%@---%@---%@", obj.name, obj.age, obj.height);
        
        obj.name = @"zhangdanfeng";
        
        [self.context updatedObjects];
        [self.context save:nil];
        
    }];

3,同一个数据库内表的关联
  • 3.1, 创建其他表
Snip20170104_4.png
  • 3.2, 在coredata编辑页面进行关联
Snip20170104_5.png
  • 3.3, 关联好之后需要重新的创建模型(比如说之前的Employee模型代码文件里面是没有自动生成department信息的, 重新创建会自动生成,当然手写也可以)
Snip20170104_2.png
  • 3.4, 直接在代码中创建并赋值即可
  
    Department *department = [NSEntityDescription insertNewObjectForEntityForName:@"Department" inManagedObjectContext:self.context];
    department.name = @"ios"; 
    
    Employee *employee01 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
    employee01.name = [NSString stringWithFormat:@"zhangzhang"];
    employee01.height = @(1.59 + arc4random_uniform(6)*0.1);
    employee01.age = @(26+arc4random_uniform(4));
    //赋值
    employee01.department = department;
    
    NSError *errror;
    [self.context save:&errror];
    if (errror) {
        NSLog(@"%@",errror);
    }

4,多个数据库简单使用

  • 有多个数据库,初始化的时候必须要用方式二进行初始化
    //方式二:在有多个数据库的时候会有多个数据库文件夹,所以需要指定特定的数据库文件夹,momd是默认数据库文件夹后缀名,如Company.momd
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"Company" withExtension:@"momd"];
    NSManagedObjectModel   *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:url];
  • 一个数据库对应一个上下文,如果有多个数据库,需要创建多个上下文,然后可以独立的进行每个数据库的操作,具体操作方法和上面的一样,只不过换一下上下文即可
最后编辑于
?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容