在 coredata 中保存实体数组

Posted

技术标签:

【中文标题】在 coredata 中保存实体数组【英文标题】:saving array of entities in coredata 【发布时间】:2014-03-18 08:24:26 【问题描述】:

我正在使用神奇的记录来处理 coredata。 如何在模型中保存实体组。

为了保存单个对象,我使用了以下代码

StoryData *storyDataEntity=[StoryData MR_createInContext:localContext];
storyDataEntity.stories=storyData;
storyDataEntity.categoryType=categoryType;
storyDataEntity.timeStamp=[NSDate date];

[localContext MR_saveToPersistentStoreWithCompletion:^(BOOL success,NSError *error)
 
     if (success) 

         
         if (error) 
             NSLog(@"error:%@",[error localizedDescription]);
         

     
 ];

如何保存一组实体,即一次保存多个实体。 我有一系列故事,我想将它们存储为一个单独的实体。

【问题讨论】:

返回nsarray对象 【参考方案1】:

你需要这样的东西:

for (NSString *oneStoryData in yourArray) //yourArray is your array of stories

    StoryData *storyDataEntity=[StoryData MR_createInContext:localContext];
    storyDataEntity.stories= oneStoryData;
    storyDataEntity.categoryType=categoryType;
    storyDataEntity.timeStamp=[NSDate date];


[localContext MR_saveToPersistentStoreWithCompletion:^(BOOL success,NSError *error)
 
     if (success) 

         
         if (error) 
             NSLog(@"error:%@",[error localizedDescription]);
         

     
 ];

还要记住,StoryData 不是 NSObject,它是 NSManagedObject。

来自 Apple 文档

NSManagedObject 是一个通用类,它实现了 Core Data 模型对象所需的所有基本行为。 不能将 NSObject 的直接子类(或任何其他不从 NSManagedObject 继承的类)的实例与托管对象上下文一起使用。您可以创建 NSManagedObject 的自定义子类,但这并不总是必需的。如果不需要自定义逻辑,可以用 NSManagedObject 实例组成一个完整的对象图。

你的 NSArray 中的对象是什么?一个 NSString 还是什么?

如果您的数组有 StoryData 实体,那么这是您的问题,您是如何创建这些实体的?使用 [[StoryData alloc]init] ?

然后在 for 你可以做类似的事情:

for (StoryData *oneStoryData in yourArray) //yourArray is your array of stories

    StoryData *storyDataEntity=[StoryData MR_createInContext:localContext];
    storyDataEntity.property1 = oneStoryData.property1;
    storyDataEntity.property2 = oneStoryData.property2;

编辑

如果你真的想在 Core Data 中保存整个 NSArray/NSMutableArray,请查看本教程:

How to save a NSArray/NSMutableArray in Core Data

【讨论】:

我可以在模型中存储 storyDataEntities 数组吗 检查这个:***.com/a/1562725/1381708。但是,你到底想存储一个实体数组是为了什么? 无需登录完成处理程序。如果您打开日志记录,MagicalRecord 将为您记录所有内容 如何在 coredata @ Gabriel.Massana 中存储实体数组 最后我以以下方式完成了 for (int i=0;i

以上是关于在 coredata 中保存实体数组的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Swift 3 中将自定义类保存为 CoreData 实体的属性?

与此上下文的 CoreData SwiftUI 错误不同的 NSManagedObjectModel

使用 MagicalRecord 保存实体 - 还尝试保存不同的实体?

CoreData 获取问题:获取具有特定日期数组的实体

iOS - 将图像数组保存到 CoreData

CoreData - 创建新实体 - 为啥不需要保存它?