I'm working on UIDocument application and I'd like to show the user a preview of the document before he opens it. I can render that preview into an image when the document get's closed. But where should I save that image? In an other file? or is there a designated way to do this?

Right now I'm developing it without iCloud support. But I want to have a solution that would work with iCloud too. The UIDocument is a UIManagedDocument. But saving the image into the database would make it kind a pointless. Because then I have to open the document before I can get the preview.

What do you recommend here? Where to put a preview for a UIManagedDocument?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You should save an image under (app_directory)/Library/Caches. That way iCloud won't affect your app.

link|improve this answer
But this way. If I move the document into the iCloud. The preview is local on this machine. And it is not synched over the iCloud. That means I have to regenerate the preview on every client. And for that I have to open/close every document once. – V1ru8 Feb 7 at 9:44
Then you should save it in (app_directory)/Documents. Everything that goes in that folder gets automatically synced with iCloud. – Jorsh Feb 8 at 18:55
Well non of the solutions seem to be perfect. But I'll go with the /Library/Caches and then regenerate all the previews on all devices. – V1ru8 Feb 10 at 13:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.