详解iOS应用开发中Core Data数据存储的使用

 更新时间:2016年02月19日 09:24:03   作者:苹果吧  
这篇文章主要介绍了iOS应用开发中Core Data数据存储的使用,Core Data可以看作是一个内嵌型数据库SQLite的iOS专用版本,需要的朋友可以参考下

1.如果想创建一个带有coreData的程序,要在项目初始化的时候勾选中
201621991854283.png (129×29) 
2.创建完成之后,会发现在AppDelegate里多出了几个属性,和2个方法

复制代码 代码如下:

<span style="font-size:18px;"> 
 
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext; 
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel; 
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; 
 
- (void)saveContext; 
- (NSURL *)applicationDocumentsDirectory;</span> 

Core Data数据持久化是对SQLite的一个升级,它是ios集成的,在说Core Data之前,我们先说说在CoreData中使用的几个类。

(1)NSManagedObjectModel(被管理的对象模型)

相当于实体,不过它包含 了实体间的关系

(2)NSManagedObjectContext(被管理的对象上下文)

操作实际内容

作用:插入数据  查询  更新  删除

(3)NSPersistentStoreCoordinator(持久化存储助理)

相当于数据库的连接器

(4)NSFetchRequest(获取数据的请求)

相当于查询语句

(5)NSPredicate(相当于查询条件)

(6)NSEntityDescription(实体结构)

(7)后缀名为.xcdatamodel的包

里面的.xcdatamodel文件,用数据模型编辑器编辑

编译后为.momd或.mom文件,这就是为什么文件中没有这个东西,而我们的程序中用到这个东西而不会报错的原因。


3.如果想创建一个实体对象的话,需要点击.xcdatamodel,Add Entity,添加想要的字段

201621991919438.png (480×532)201621991939856.png (380×135)

4.生成对象文件,command+n,然后选中CoreData里的NSManagerObjectSubClass进行关联,选中实体创建

201621992014263.png (325×107)

5.添加数据

复制代码 代码如下:

Person *newPerson = [NSEntityDescription insertNewObjectForEntityForName:@"Person" inManagedObjectContext:self.managedObjectContext]; 
     
    if (newPerson == nil){ 
        NSLog(@"Failed to create the new person."); 
        return NO; 
    } 
     
    newPerson.firstName = paramFirstName; 
    newPerson.lastName = paramLastName; 
    newPerson.age = [NSNumber numberWithUnsignedInteger:paramAge]; 
    NSError *savingError = nil; 
     
    if ([self.managedObjectContext save:&savingError]){ 
        return YES; 
    } else { 
        NSLog(@"Failed to save the new person. Error = %@", savingError); 
    } 

NSEntityDescription(实体结构)相当于表格结构

6.取出数据查询

复制代码 代码如下:

/* Create the fetch request first */ 
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; 
    /* Here is the entity whose contents we want to read */ 
    NSEntityDescription *entity = 
    [NSEntityDescription 
     entityForName:@"Person" 
     inManagedObjectContext:self.managedObjectContext]; 
    /* Tell the request that we want to read the
     contents of the Person entity */ 
    [fetchRequest setEntity:entity]; 
    NSError *requestError = nil; 
    /* And execute the fetch request on the context */ 
    NSArray *persons = 
    [self.managedObjectContext executeFetchRequest:fetchRequest 
                                             error:&requestError]; 
    /* Make sure we get the array */ 
    if ([persons count] > 0){ 
        /* Go through the persons array one by one */ 
        NSUInteger counter = 1; 
        for (Person *thisPerson in persons){ 
            NSLog(@"Person %lu First Name = %@", 
                  (unsigned long)counter,  
                  thisPerson.firstName);  
            NSLog(@"Person %lu Last Name = %@",  
                  (unsigned long)counter,  
                  thisPerson.lastName); 
            NSLog(@"Person %lu Age = %ld", 
                  (unsigned long)counter, 
                  (unsigned long)[thisPerson.age unsignedIntegerValue]); 
            counter++; 
        } 
    } else { 
        NSLog(@"Could not find any Person entities in the context.");  
    } 

7.删除数据

复制代码 代码如下:

/* Create the fetch request first */ 
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init]; 
    /* Here is the entity whose contents we want to read */ 
    NSEntityDescription *entity = 
    [NSEntityDescription 
     entityForName:@"Person" 
     inManagedObjectContext:self.managedObjectContext]; 
    /* Tell the request that we want to read the
     contents of the Person entity */ 
    [fetchRequest setEntity:entity]; 
    NSError *requestError = nil; 
    /* And execute the fetch request on the context */ 
    NSArray *persons = 
    [self.managedObjectContext executeFetchRequest:fetchRequest 
                                             error:&requestError]; 
    if ([persons count] > 0){ 
        /* Delete the last person in the array */ 
        Person *lastPerson = [persons lastObject]; 
        [self.managedObjectContext deleteObject:lastPerson]; 
        NSError *savingError = nil; 
        if ([self.managedObjectContext save:&savingError]){ 
            NSLog(@"Successfully deleted the last person in the array."); 
        } else { 
            NSLog(@"Failed to delete the last person in the array."); 
        } 
    } else {  
        NSLog(@"Could not find any Person entities in the context.");  
    }  

8.排序

复制代码 代码如下:

<pre code_snippet_id="243955" snippet_file_name="blog_20140319_5_4289257" name="code" class="objc">NSSortDescriptor *ageSort =  
[[NSSortDescriptor alloc] initWithKey:@"age"  
ascending:YES];  
NSSortDescriptor *firstNameSort =  
[[NSSortDescriptor alloc] initWithKey:@"firstName"  
ascending:YES];  
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:  
ageSort,  
firstNameSort, nil nil];  
fetchRequest.sortDescriptors = sortDescriptors; </pre><p></p> 
<pre></pre> 
<p></p> 
<p style="background-color:rgb(255,255,255); margin:10px auto; padding-top:0px; padding-bottom:0px; font-family:verdana,'ms song',Arial,Helvetica,sans-serif; line-height:19.09090805053711px"> 
<span style="background-color:rgb(255,255,255)"><span style="font-size:18px"><br> 
</span></span></p> 
<span style="background-color:rgb(255,255,255)">注意</span><span style="font-size:18px; background-color:rgb(255,255,255)">ascending:YES 属性决定排序顺序</span><span style="background-color:rgb(255,255,255)"><span style="font-size:18px"><br> 
<br> 
<br> 
</span></span><br> 

相关文章

  • 禁止iPhone Safari video标签视频自动全屏的办法

    禁止iPhone Safari video标签视频自动全屏的办法

    本篇文章给大家分析有没有办法禁止iPhone Safari video标签视频自动全屏,以下给出好多种情况分享,感兴趣的朋友可以参考下
    2015-09-09
  • iOS实现多控制器切换效果

    iOS实现多控制器切换效果

    这篇文章主要为大家详细介绍了iOS实现多控制器切换效果,带滑动动画,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-02-02
  • iOS中延时执行的几种方式比较及汇总

    iOS中延时执行的几种方式比较及汇总

    这篇文章主要给大家介绍了关于iOS中延时执行的几种方式比较及汇总,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。
    2018-02-02
  • iOS实现拼图小游戏

    iOS实现拼图小游戏

    这篇文章主要为大家详细介绍了iOS实现拼图小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • iOS实现文本分页的方法示例

    iOS实现文本分页的方法示例

    这篇文章主要给大家介绍了关于iOS实现文本分页的相关资料,文中通过示例代码介绍的非常详细,对各位iOS开发者们具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2019-09-09
  • iOS微信浏览器回退不刷新实例(监听浏览器回退事件)

    iOS微信浏览器回退不刷新实例(监听浏览器回退事件)

    下面小编就为大家带来一篇iOS微信浏览器回退不刷新实例(监听浏览器回退事件)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-05-05
  • iOS中的UISlider滑块组件用法总结

    iOS中的UISlider滑块组件用法总结

    不仅是滑动开关,UISlider组件也是常用的进度条制作工具,这里我们就一起来看一下iOS中的UISlider滑块组件用法总结,需要的朋友可以参考下
    2016-06-06
  • iOS实现秒杀活动倒计时

    iOS实现秒杀活动倒计时

    这篇文章主要为大家详细介绍了iOS实现秒杀活动倒计时,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-12-12
  • IOS开发用户登录注册模块所遇到的问题

    IOS开发用户登录注册模块所遇到的问题

    最近和另外一位同事负责公司登录和用户中心模块的开发工作。通过本文给大家分享IOS开发用户登录注册模块所遇到的问题,感兴趣的朋友一起学习吧
    2016-01-01
  • iOS中设置网络超时时间+模拟的方法详解

    iOS中设置网络超时时间+模拟的方法详解

    这篇文章主要介绍了在iOS中设置网络超时时间+模拟的方法,文中介绍的非常详细,相信对大家具有一定的参考价值,需要的朋友们下面来跟着小编一起来学习学习吧。
    2017-04-04

最新评论