Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storing images to CoreData - Swift

In my code I managed to save a textLabel with CoreData but I can't seem to properly save the image. I've read some tutorials and I know I have to convert it to NSData. But how do I do it?

Thanks in advance!

like image 595
Nicholas Piccoli Avatar asked Nov 29 '22 01:11

Nicholas Piccoli


2 Answers

You shouldn't save large data inside core data, an Apple engineer told me this little trick at the last WWDC:

You can use the property "Allows external storage":

enter image description here

By doing this as far as i know, your image will be stored somewhere in the file system, and inside core data will be saved a link to your picture in the file system. every time you'll ask for the picture, core data will automatically retrive the image from the file system.

To save the image as NSData you can do:

let image = UIImage(named: "YourImage")
let imageData = NSData(data: UIImageJPEGRepresentation(image, 1.0))
managedObject?.setValue(imageData, forKey: "YourKey")

Remember that 1.0 in the UIImageJPEGRepresentatio means that your using the best quality and so the image will be large and heavy:

The quality of the resulting JPEG image, expressed as a value from 0.0 to 1.0. The value 0.0 represents the maximum compression (or lowest quality) while the value 1.0 represents the least compression (or best quality).

like image 123
Max_Power89 Avatar answered Dec 17 '22 01:12

Max_Power89


Core Data isn't meant to save big binary files like images. Use Document Directory in file system instead.

Here is sample code to achieve that.

let documentsDirectory = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true).first as! String
// self.fileName is whatever the filename that you need to append to base directory here.
let path = documentsDirectory.stringByAppendingPathComponent(self.fileName)
let success = data.writeToFile(path, atomically: true)
if !success { // handle error }

It is recommended to save filename part to core data along with other meta data associated with that image and retrieve from file system every time you need it.

edit: also note that from ios8 onwards, persisting full file url is invalid since sandboxed app-id is dynamically generated. You will need to obtain documentsDirectory dynamically as needed.

like image 41
Daniel Shin Avatar answered Dec 16 '22 23:12

Daniel Shin