1

I have an issue. My app is storing - data with CoreData (in Model.sqlite file) and user created photos as jpgs. It all is stored in Documents directory. I managed to store my database in iCloud (but it is still buggy), but i have no idea how to store both database and photos in iCloud. Can somebody help?

rmaddy
  • 314,917
  • 42
  • 532
  • 579

1 Answers1

2

i never used iCloud synch but this could help answer your question. https://developer.apple.com/library/ios/documentation/General/Conceptual/iCloudDesignGuide/Chapters/DesignForCoreDataIniCloud.html

Mayo323
  • 288
  • 3
  • 10
  • I read it. But still I don't know how to connect both core data and user files – Artur Bartczak Dec 02 '13 at 20:16
  • What is stored to CoreData? – Mayo323 Dec 02 '13 at 21:22
  • I store saved data about receipts in CoreData, and photos in Documents directory – Artur Bartczak Dec 02 '13 at 21:27
  • So if your app is supporting iCloud, than your CoreData should do it automaticaly for you. Just check if you have in your coreData attributes turn on external storage. – Mayo323 Dec 03 '13 at 10:40
  • So, After all comments : in iPhone, in Documents directory, I'm storing sqlite database (with records about receipts) and photos saved along with database in Documents dir. How to back it all up to iCloud and retrieve? – Artur Bartczak Dec 03 '13 at 18:45