Im on iOS 7 and want to use core data with iCloud, this is working well, the issue I wanted some input on is the following.
Some of my Core Data objects have related images/large text files which I was storing as files on the file system and just setting the url of these items as string properties. Now obviously this wont just work with iCloud Core Data sync because iCloud has no notion of these files. I was wondering if you had any suggestions on how to handle this?
1) I could store the image data and large text files as core data properties directly but it does not seem to be the best way to go
2) I could use iCloud to also store the documents and then somehow try to keep sync between the files in different iOS devices, but this could potentially get messy.
3) Some other solution.
Any Suggestions?
Regards
Daniel