iOS CoreData使用简章

Apple官方文档介绍:

Core Data

Persist or cache data and support undo on a single device.

Overview

Use Core Data to save your application’s permanent data for offline use, to cache temporary data, and to add undo functionality to your app on a single device.

Through Core Data’s Data Model editor, you define your data’s types and relationships, and generate respective class definitions. Core Data can then manage object instances at runtime to provide the following features.

Persistence

Core Data abstracts the details of mapping your objects to a store, making it easy to save data from Swift and Objective-C without administering a database directly.

Undo and Redo of Individual or Batched Changes

Core Data’s undo manager tracks changes and can roll them back individually, in groups, or all at once, making it easy to add undo and redo support to your app.

Background Data Tasks

Perform potentially UI-blocking data tasks, like parsing JSON into objects, in the background. You can then cache or store the results to reduce server roundtrips.

View Synchronization

Core Data also helps keep your views and data synchronized by providing data sources for table and collection views.

Versioning and Migration

Core Data includes mechanisms for versioning your data model and migrating user data as your app evolves.

CoreData使用简章:

一、在新项目中添加CoreData

        方式一:新建项目工程时,勾选上Use Core Data复选框

        方式二:Command+N新建文件,选择Core Data栏目下的Data Model文件,按步骤完成数据库文件的创建

选择文件类型
数据库文件命名
生成新的数据库文件

二、创建数据库文件后,给数据库添加实体模型,添加模型会自动生成Configurations配置信息,后面根据配置信息来创建数据库模型类文件

新增实体模型
模型重命名
自动生成Configurations

三、创建模型后,根据需求给模型添加属性

新增模型属性

四、添加模型属性后,创建模型类

        方式一:Edit0r->Create NSManagedObject Subclass...,自动生成步骤二命名的模型类,创建前要选择好语言环境OC/Swift

选择语言环境

        Create NSManagedObject Subclass...,按照步骤完成创建

选择对应数据库
自动生成模型类(OC)

        方式二:Command+N创建继承自NSManagedObject的模型类,命名为步骤二添加模型的名称,在.h文件申明模型各属性信息,.m文件中@dynamic修饰各属性。

命名及类继承

.h文件

#import <CoreData/CoreData.h>

NS_ASSUME_NONNULL_BEGIN

@interface MyModel : NSManagedObject

@property (nonatomic) int16_t age;

@property (nullable, nonatomic, copy) NSString *name;

@property (nonatomic) BOOL sex;

@property (nullable, nonatomic, copy) NSDate *birthday;

+ (NSFetchRequest<MyModel *> *)fetchRequest;

@end

NS_ASSUME_NONNULL_END

.m文件

#import "MyModel.h"

@implementation MyModel

@dynamic age;

@dynamic name;

@dynamic sex;

@dynamic birthday;

+ (NSFetchRequest<MyModel *> *)fetchRequest {

    return [NSFetchRequest fetchRequestWithEntityName:@"MyModel"];

}

@end

五、对数据库进行操作(增、删、改、查)

        1.Reference库及模型类Header文件,申明持久化容器全局变量,初始化持久化容器NSPersistentContainer(懒加载)

        #import "ViewController.h"

        #import <CoreData/CoreData.h>

        #import "MyModel.h"

        @interface ViewController ()

        @property (strong, nonatomic) NSPersistentContainer *container;

        @end

        //懒加载        

        - (NSPersistentContainer *)container {

            if(!_container) {

                //根据数据库文件初始化容器

                _container = [[NSPersistentContainer alloc] initWithName:@"MyCoreData"];


                //Load stores from the storeDescriptions property that have not already been successfully added to the container. The completion handler is called once for each store that succeeds or fails.

                // 从尚未成功添加到容器中的Store Description属性加载存储。 对于成功或失败的每个存储,调用一次完成处理程序。

                /** 加载数据库基本信息(必须调用)

                *  NSManagedObjectContext 管理上下文

                *  NSPersistentStoreCoordinator 持久化存储协调器(助手)

                *  NSPersistentStore 持久化存储对象(特殊)

                *  NSEntityDescription 实体结构(表结构)

                */

                [_container loadPersistentStoresWithCompletionHandler:^(NSPersistentStoreDescription * _Nonnull storeDescription, NSError * _Nullable error) {

                    //code area

                }];

            }

            return _container;

        }


懒加载容器

        2.增操作(inset into **** (name, age, sex, birthday) values ('****', 18, 1, ****);)

              //执行后台操作任务

                [self.container performBackgroundTask:^(NSManagedObjectContext * _Nonnull context) {

                [context performBlockAndWait:^{

                        //创建一个空的数据模拟对象

                        MyModel *model = [NSEntityDescription insertNewObjectForEntityForName:@"MyModel" inManagedObjectContext:context];

                        model.name=@"张三";

                        model.birthday= [NSDatedate];

                        model.age=12;

                        model.sex=YES;

                        //插入上面的数据

                        NSError *error =nil;

                        [context save:&error];

                        if(error) {

                            NSLog(@"插入失败: %@", error.userInfo);

                        }else{

                            NSLog(@"插入成功");

                        }

                    }];

                }];

        3.查操作(select * from **** where name='张三' order by age asc;)

            //select * from ****;

            //select * from **** where name='张三';

            //select * from **** where name='张三' order by age asc;

            [self.container performBackgroundTask:^(NSManagedObjectContext * _Nonnull context) {

                    NSFetchRequest *request = [MyModel fetchRequest];

                    //添加附加条件的查询(sqlite语句)

                    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@ OR age=%d", @"张三",12];

                    request.predicate= predicate;

                    //添加排序的条件

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

                    request.sortDescriptors=@[sort];

                    NSError *error =nil;

                    NSArray *resultArray = [context executeFetchRequest:request error:&error];

                    if(error) {

                        NSLog(@"查询失败:%@", error.userInfo);

                    }

                    for(MyModel *model in resultArray) {

                        NSLog(@"名字:%@; 年龄:%d; 性别:%@", model.name,model.age, model.sex?@"男":@"女");

                    }

            }];

        4.删操作(delete from **** where name='****';)

                //delete from **** where name='张三'

                [self.container performBackgroundTask:^(NSManagedObjectContext * _Nonnull context) {

                        NSFetchRequest*request = [MyModelfetchRequest];

                        //添加附加条件的查询

                        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", @"张三"];

                        request.predicate= predicate;

                        //获取所有名字叫“张三”的记录

                        NSError *error =nil;

                        NSArray *resultArray = [context executeFetchRequest:request error:&error];

                        if(error) {

                            NSLog(@"查询失败");

                        }

                        //删除查询后的所有记录

                        for(MyModel *model in resultArray) {

                            //将上面的记录从数据库中删除(**从内存中删除对象)

                            [context deleteObject:model];

                        }

                        //执行保存操作(真正的从数据库中删除)

                        [context save:&error];

                        if(error) {

                            NSLog(@"删除失败: %@", error.userInfo);

                        }else{

                            NSLog(@"删除成功");

                        }

                }];

         5.改操作(update **** set name='****' where name='****';)

                [self.container performBackgroundTask:^(NSManagedObjectContext * _Nonnull context) {

                        NSFetchRequest *request = [MyModel fetchRequest];

                        //添加附加条件的查询

                        NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", @"张三"];

                        request.predicate= predicate;

                        //获取查询的结果(名字叫做“张三”的所有记录)

                        NSError *error =nil;

                        NSArray *resultArray = [context executeFetchRequest:request error:&error];

                        if(error) {

                            NSLog(@"查询失败:%@", error.userInfo);

                        }

                        //循环修改查询后的数据

                        for(MyModel *model in resultArray) {

                            model.name=@"李四";

                        }

                        //写到数据库中

                        [context save:&error];

                        if(error) {

                            NSLog(@"更新失败:%@", error.userInfo);

                        }else{

                            NSLog(@"更新成功");

                        }

                    }];

以上只为CoreData的简单使用,后面还会添加Relationship等的使用简章

Relationship

▶︎欢迎查阅

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352