如何在xCode(swift)中保存UIimages数组

时间:2016-08-05 00:18:05

标签: ios swift uiimage save

我有一个UIImages数组,它是动态的。 因此用户可以将照片添加到此阵列。 我的问题是如何保存这个数组,因为我尝试了一些东西,但似乎没有一个对我有效。 我欢迎有关如何完成这项任务的建议。

谢谢。

1 个答案:

答案 0 :(得分:1)

如果您想使用Core Data,我认为保存图像数组的最简单方法是在添加新图像或删除图像时保存它们。

核心数据数据模型非常简单。您只需添加一个名为Image的实体或在您的上下文中有意义的实体。向实体添加image属性。将属性的类型设置为" Data"。生成NSManagedObject子类,模型完成。

现在,您需要如何以及何时保存图像?我认为只有在用户创建新图像时才应将图像插入Core Data上下文。当用户删除图像时,您应该从Core Data上下文中删除一个对象。因为如果用户在您的应用会话中没有执行任何图像处理,则无需再次保存图像。

要保存新图片,

// I assume you have already stored the new image that the user added in a UIImage variable named imageThatTheUserAdded
let context = ... // get the core data context here
let entity = NSEntityDescription.entityForName(...) // I think you can do this yourself
let newImage = Image(entity: entity, insertIntoManagedObjectContext: context)
newImage.image = UIImageJPEGRepresentation(imageThatTheUserAdded, 1)
do {
    try context.save()
} catch let error as NSError {
    print(error)
}

我想你知道如何从Core Data中删除图像,对吗?

当显示需要显示图像的VC时,执行NSFetchRequest并获取保存为[AnyObject]的所有图像,并将每个元素投射到Image。然后,使用init(data:)初始值设定项将数据转换为UIImage s。

编辑:

在这里,我将向您展示如何将图像恢复为[UIImage]

let entity = NSEntityDescription.entityForName("Image", inManagedObjectContext: dataContext)
let request = NSFetchRequest()
request.entity = entity
let fetched = try? dataContext.executeFetchRequest(request)
if fetched != nil {
    let images = fetched!.map { UIImage(data: ($0 as! Image).image) }
    // now "images" is the array of UIImage. use it wisely.
}