iCloud is a web service from Apple Inc. that allows users to store data such as music files and automatically sync them between multiple devices such as: iPhones, iPods, iPads, and personal computers. Note that iCloud is a different API than Apple's CloudKit service.
Questions tagged [icloud]
2716 questions
30
votes
4 answers
MPMediaItem and iTunes Match
I have an app that uses the iPod Library API to access the song database in iOS. With the release of iTunes Match, any song which is not on the device will fail to load. Is there a way I an request that the song be downloaded? Perhaps using the…

TurqMage
- 3,321
- 2
- 31
- 52
30
votes
2 answers
Disabling iCloud to Transfer App to Another Apple ID?
I am trying to transfer an app to another Apple ID. When I did this I received an error saying the app could not be transferred as the app had iCloud enabled.
Since this was not intentional I tried to disable iCloud and submit an update to the app.…

GuybrushThreepwood
- 5,598
- 9
- 55
- 113
27
votes
3 answers
CoreData and iCloud
I am developing a core data application and was thinking of adding iCloud support, but after looking around on the web I frequently heard that iCloud+CoreData is unreliable and will often break.
Is this true? A book I am reading on the subject of…

john smith
- 281
- 3
- 6
26
votes
3 answers
Syncing an existing Core Data store with iCloud
I am trying to get iCloud to work with my app, which needs to migrate an existing local store to a ubiquitous store, if the user requests it.
After some nosing around Apple dev forums and elsewhere, I have taken this approach, which is not…

ed94133
- 1,477
- 2
- 19
- 40
26
votes
1 answer
Will iCloud keep user's data that was belonging to a deleted app?
My use case is:
User downloads my app and uploads some data/Files onto iCloud within the sandbox of my app.
User deletes my app
Questions:
Will iClould keep user's data that was belonging to the deleted app? (Based on my experiment, the data is…

Josh2009
- 263
- 3
- 4
26
votes
7 answers
UIDocumentPickerViewController returns url to a file that does not exist
I'm using UIDocumentPickerViewController to let the user select a file from iCloud Drive for uploading to the backend.
Most of the time, it works correctly. However, sometimes (especially when the internet connection is…

imgx64
- 4,062
- 5
- 28
- 44
25
votes
3 answers
UIDocument not saving to file despite indicating success
I'm trying to open, modify, and save a file in iCloud Drive using UIDocument. When I call save(to:for:completionHandler:) with the file location and using .forOverwriting for the UIDocumentSaveOperation, it completes with a status of success = true.…

Matt
- 2,576
- 6
- 34
- 52
25
votes
3 answers
Using the UIDocumentPickerViewController, is it possible to show a default service (Dropbox, Google Drive, etc) on first open like in Slack?
Normally, the behavior with UIDocumentPicker is that you present, then the user must use the "Locations" menu on the top right to switch between the services. Is it possible to display either "Dropbox" or "Google Drive" first by default? Almost as…

Vu Tran
- 600
- 2
- 6
- 14
24
votes
5 answers
CloudKit - no server-side logic?
With CloudKit, you can focus on your client-side app development and let iCloud eliminate the need to write server-side application logic. CloudKit provides you with Authentication, private and public database, structured and asset storage services…

alan0xd7
- 1,831
- 1
- 15
- 19
22
votes
1 answer
Apple iCloud calendar API
I've been trying to find out of its possible to access Apple's iCloud calendar from a web application.
Does it support CalDAV or any sort of web API? I can't seem to find a clear answer for this.

Eric V
- 229
- 1
- 2
- 4
22
votes
5 answers
iOS 5.0.1 : How to verify that the folder is marked as "Do not back up" for iCloud?
I want to set Do not back up to my folder which is in Document Directory.
I found code for "Do not back up" , but how do i verify that the folder is marked.

Devang
- 11,258
- 13
- 62
- 100
21
votes
5 answers
Swift write/save/move a document file to iCloud drive
I've been trying for over two days to write a file to iCloud drive. I have tried writing a simple text file directly, locally then moving it, using UIDocumentMenuViewController, etc. I'm not getting any errors with my code and stepping through…

Paul C
- 261
- 1
- 2
- 8
21
votes
1 answer
iCloud exception the operation couldn't be completed no such file or directory, iOS8
Core data over iOS/ works fine, but while getting update or writing to the database in iOS 8, I get
2014-09-19 01:16:31.819 xxxxxx[369:57150] __45-[PFUbiquityFilePresenter processPendingURLs]_block_invoke(439): CoreData: Ubiquity: Librarian…

user2585453
- 249
- 3
- 8
20
votes
4 answers
Method for downloading iCloud files? Very confusing?
I have basic iCloud support in my application (syncing changes, making ubiquitous, etc.), but one crucial omission so far has been the lack of "download" support for files that exist (or have changes) in the cloud, but are not in sync with what's…

Craig Otis
- 31,257
- 32
- 136
- 234
20
votes
2 answers
core data iCloud merge protocol
I've managed to get my existing core data app to work with iCloud. After days of study, it was actually surprisingly simple. It seems that 3 things are essential:
to add an entitlements file (in recent Xcode, this can be done using by selecting…

davidav
- 860
- 8
- 12