Is it possible to upload a .zip file to iCloud, and then have it be synchronized across all of a user\'s iOS devices? If so, how would I go abo
.zip
iCloud
In order to enabling Document storage in iCloud your "document" needs to be encapsulated in a UIDocument object.
Because UIDocument links to a file URL, you can easily create a UIDocument pointing to file://myzipfile.zip and then upload a zip document to iCloud.
UIDocument
file://myzipfile.zip
I hope this helps