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
1
vote
1 answer
How to reload UIViewController data from App Delegate
I have some methods that I am calling from the appDelegate to sync changes with persistent storage and iCloud.
The methods and the appDelegate work fine, my app syncs changes fine; however when the app is mergingChanges and persistentStoreDidChange…

RileyDev
- 2,950
- 3
- 26
- 61
1
vote
0 answers
How can I access iCloud synced data from my web application?
Suppose I have built an iOS App, and maybe a Mac App, and they all use iCloud to store data and to sync it across devices.
Now, suppose I want to build a web based application where users can log in to a web site and access the same data.
How can I…

Vihung
- 12,947
- 16
- 64
- 90
1
vote
0 answers
.icloud files on iCloud Drive with NSFileManager
I use theses function to read out the directory content of my app iCloud folder :
+(NSArray *)getiCloudFileList:(NSString *)icloudPath strMask:(NSString *)strMask {
NSError *error;
NSFileManager *fileManager = [[NSFileManager alloc]…

Rolf Warnecke
- 107
- 1
- 10
1
vote
1 answer
Will my app be again rejected if still stores a small amount of data on iCloud after I flagged everything not to be backed up?
I'm having an iOS app that moves files from Resources to NSDocumentDirectory and then I download from my server more files and put them there. My app was rejected because it stored 15mb on iCloud and I put that flag (That says that I do not want…

Silviu St
- 1,810
- 3
- 33
- 42
1
vote
0 answers
CKSubscription User Record Update
I would like to send a notification when the User Record is updated. Is this possible as the User Records are a different type of record in CloudKit?
Thanks

Tom Coomer
- 6,227
- 12
- 45
- 82
1
vote
1 answer
What is exactly the requirements of CloudKit on iOS?
Apple's documentation seems to say that CloudKit is available on iOS 8.0 and later. But when I test my app using CloudKit on iOS 8.1 and iOS 8.2 simulator, the CloudKit functions don't work. The ubiquityIdentityToken property of an NSFileManager is…

zhoudu
- 623
- 8
- 19
1
vote
0 answers
iCloud data uploading is not working when .sqlite file is uploaded in ios
I am trying to upload sqlite file on iCloud. I am using NSFileCoortinator for coping the file from one file to another file but schema of sqlite file is only get copied, I am not getting data in sqlite file….Also sometimes the data is appearing in…

swapnali patil
- 304
- 2
- 17
1
vote
1 answer
Cloudkit different Record Type for every user?
this is a scenario not only me might have thought of a solution...
My goal is to sync my App via iCloud but among different users (different iCloud accounts). "Normal" iCloud sync can only sync across different devices using the same iCloud Account.…

Kreuzberg
- 894
- 1
- 9
- 18
1
vote
0 answers
How to check NSDocument is exist on iCloud or not
I have used the following code to check that the file exist or not, but the NSMetaDataquery is giving me a count zero.
-(void)loadData:(NSMetadataQuery *)query
{
NSLog(@"Count %d", [query resultCount]);
if([query resultCount] == 0)
{
…

Vinod Sutar
- 101
- 6
1
vote
1 answer
iCloudKit, Linking two methods to a third
I have a 3 x iCloudKit methods, fetch the banana database, fetch the apple database; and update the stock database.
But I have no way of knowing how long it will take the apple database to before it returns and/or the banana database with their…

user3069232
- 8,587
- 7
- 46
- 87
1
vote
1 answer
Is it possible to obtain an unique iCloud user ID on cocoa?
My iOS app is currently on beta in TestFlight, and as a way to retribute to the nice people who helped me test it I would like to offer them some goodies such as, for instance, the full final version of the app for free.
For this, I was thinking of…

Felipe Ferri
- 3,488
- 2
- 33
- 48
1
vote
1 answer
Trouble with iOS 8 CoreData iCloud sync consistency
I have a universal app written in Swift using xCode 6.3.2. It is currently very simple in that when I push a button a random number is generated and then stored using CoreData. This works perfectly until I implement iCloud. With iCloud enabled…

Scooter
- 4,068
- 4
- 32
- 47
1
vote
1 answer
ios + icloud: com.apple.developer.ubiquity-container-identifiers value not allowed
I have a problem uploading my app via Application Loader. I used the Archive for publishing function in Xamarin Studio and opened the created ipa in the application loader. And then I got the following error:
ERROR ITMS-90164: "Invalid Code Signing…

Ralf
- 836
- 1
- 9
- 32
1
vote
0 answers
iCloud Sync check for duplicates Swift
I'm trying to set up iCloud sync for an existing CoreData app.
The basic syncing is working fine. Now I'm trying to check for duplicates when updating the store.
I've used the official documentation as well as this thread and tried to translate the…

Seb
- 983
- 1
- 11
- 26
1
vote
1 answer
Deleting multiple CKRecords at the same time
I have been programming in objective-C for about a year now, but i am new to cloud kit. I can do simple things such as fetch, save and delete Records but I have not been able to find a way of deleting multiple Records at a time.
I tried a for loop…

Alex May
- 11
- 1
- 3