Is there a way to prevent your application data (Documents folder contents) from being synced to iCloud? (other then storing it in Caches directory because of the new issues in iOS5 with doing that) My Application has need of storing data on the device, but for security reasons it can't be synchronized to any 3rd party (including Apple).
|
feedback
|
|
From: https://developer.apple.com/library/ios/#qa/qa1719/_index.html You can use the following method to set the "do not back up" extended attribute. Whenever you create a file or folder that should not be backed up, write the data to the file and then call this method, passing in a URL to the file.
More information can be found: https://developer.apple.com/icloud/documentation/data-storage/ | |||||||||||||
feedback
|
|
See iOS App Programming Guide: iCloud Storage. It describes that an app must be signed with iCloud entitlements so that seems to imply that if you don't do anything then you should be fine. | |||||||
feedback
|
|
I do not think that is possible at the moment, either you live in the Documents directory and get backed up or you live in the Cache/tmp directory and risk being "cleaned". I would recommend filing a bug report at https://bugreport.apple.com/. (If you like you could also post it to http://openradar.appspot.com/ to allow other developer to see it, reference it to make Apple prioritize the feature and also track it, given that you update it when you receive answers from Apple.) | |||
|
feedback
|