Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If a user installs an an app which uses iCloud with a UI(Managed)Document, then uses the app, creates data which is saved to iCloud and then deletes the app on his phone, the iCloud data will stay on the device (transaction logs etc.). If the user reinstalls the app it will try to use these old files.

I have the following two problems with that:

  • The iCloud documents could have changed in the meanwhile and there might be problems when the user has no network connection on the first launch after reinstalling the app.
  • The iCloud documents for this app could have been deleted by the user (via settings or in Mac OS Finder in the user library). Now, when the user has no network on the first launch after reinstalling the app, the app might think that there is an ubiquity container with data even though it's already deleted (app might crash).

This is not very easy to test but I have definetely crashes and malfunctions for those two issues. E.g. NSMetadataQuery shows me results for documents which do not exist in iCloud because they have been deleted (but they existed on the deletion of the app).

Is there any easy solution to this? I thought about deleting the local iCloud data on the device when the app is launched for the first time - but how can this be done?

share|improve this question

1 Answer

up vote 0 down vote accepted

It can't be done. If you delete an iCloud document locally, you delete it everywhere-- eventually. The iCloud APIs have no concept of managing local copies independently of the iCloud service, so if you delete one-- even with the network down-- the iCloud ubiquity daemon will send a delete command to the service at the first opportunity.

The closest approximation that current APIs would allow would be:

  • Check whether the network is reachable
  • If it's not reachable, do not attempt to access any iCloud documents (because as you note, the information might be stale).
  • If and when the network comes up, try to open all existing iCloud documents. (On iOS, iCloud updates are only downloaded on demand, so you need to create that demand).

If that's not good enough (and let's face it, it's not good enough), file a bug with Apple and hope for the best.

share|improve this answer
One more question: How can I securely check whether a network connection to iCloud is possible? Methods like [[NSFileManager defaultManager] ubiquityIdentityToken] or [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil] or [NSUbiquitousKeyValueStore defaultStore] do not work because they check for the local mobile Documents on the device... – FrankZp Mar 1 at 12:22
1  
You can't verify iCloud specifically, you'd have to use general-purpose network reachability checks. Apple provides a Reachability demo app that shows how to do this. – Tom Harrington Mar 1 at 16:46
Thanks, I think I'll have to check for network in general. But as you mentioned - it seems like the possibilities with the current APIs are not good enough for a stable implementation. – FrankZp Mar 1 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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