A server backed key-value storage system available on Apple's iOS and OS X platforms meant for syncing data between devices.

learn more… | top users | synonyms

0
votes
0answers
21 views

Identifying non-app iCloud Key Value data

I am subscribing to NSUbiquitousKeyValueStoreDidChangeExternallyNotification to monitor key value changes from iCloud. When received, I process the userinfo included and apply my business logic. ...
0
votes
1answer
10 views

iCloud Key Value Sync - first launch

I am using iCloud to store sync user preferences between devices. On the device, these are stored in an array of 'Favorite Teams' in NSUserDefaults, and I am using MKiCloudSync to mirror them to the ...
0
votes
1answer
17 views

Debug iCloud key-value data in the cloud

I have been banging my head against the wall trying to figure out how to determine what is actually in the key-value store for a given app. Using the api to detect data seems dubious to me as I am ...
0
votes
2answers
92 views

iCloud key-value store behaving like NSUserDefaults

I'm not using the simulator. Everything seems to be working fine in code. I can read and write to NSUbiquitousKeyValueStore, and it persists data between app runs. [[NSUbiquitousKeyValueStore ...
0
votes
1answer
48 views

iCloud key value lifecycle

Given that iCloud key-value store entries are not deleted when the app that created them is uninstalled, when is the data deleted?
1
vote
1answer
259 views

iCloud synchronization does not work for an app on iPhone 4S and 5

Summary: Application installed on iOS (iPhone 4S or iPhone 5 - tested on both) that supports iCloud synchronization does actually not synchronize with iCloud. The iOS version is 6.1.2. We are ...
0
votes
1answer
32 views

NSUbiquitousKeyValueStore class and -boolForKey: method

Here's the link boolForKey: Returns the Boolean value associated with the specified key. -(BOOL)boolForKey:(NSString *)aKey Parameters aKey A key in the key-value store. Return ...
1
vote
1answer
123 views

Deleting iCloud data doesn't clear out NSUbiquitousKeyValueStore?

I have an app that is configured to use iCloud. I am adding a key/value to the NSUbiquitousKeyValueStore and I can retrieve it as expected across all of my devices. However, if I delete my app's ...
0
votes
0answers
146 views

Using iCloud Key-Value Store to Sync a Dynamic List of Items

I want to sync a small amount of data items (of a custom class) using iCloud Key Value Store. The Item class of the objects to store and sync looks like this: @interface Item : NSObject ...
3
votes
3answers
122 views

Proper handling of NSUbiquityKeyValueStore updates across devices?

My app stores a single key-value pair in iCloud using NSUbiquityKeyValueStore, an array of objects. The entire array is saved to iCloud when a change is made to any object in the array. This works ...
0
votes
1answer
74 views

Is NSUbiquitousKeyValueStore certified to work without a connection?

The documentation doesn't seem very clear about this, but can I rely on NSUbiquitousKeyValueStore to persist data locally when the device is not connected, or should I also use a NSUserDefaults?
3
votes
3answers
1k views

iCloud NSUbiquitousKeyValueStore initial sync/access delay - how to handle?

I'm using NSUbiquitousKeyValueStore to store some app settings. My logic is: when I save data locally, I save it to NSUbiquitousKeyValueStore also as a backup. When I need settings, I read locally and ...
3
votes
1answer
259 views

Wait for existing iCloud values before setting a value?

In my app, I need to share a setting between different devices running the app. I want the first device that install the app to set the master value of the setting, then all other devices should get ...
0
votes
1answer
161 views

Can I use NSUbiquitousKeyValueStore to sync between Mac and iOS?

I am porting my iOS app over to Mac OS (Mountain Lion) for sale in the Mac App Store in the near future. The iOS app uses iCloud syncing with NSUbiquitousKeyValueStore which was very simple to ...
0
votes
1answer
102 views

Provisioning Profile and NSUbiquitousKeyValueStore Problems

The app I'm currently working on was originally developed by someone else on another mac and has several provisioning profiles linked to it. I made a new provisioning profile about a month ago to test ...
2
votes
1answer
218 views

Get current iCloud Sync Status

Does anybody know if there is a way to detect if the current NSUbiquitousKeyValueStore is up to date? For example, if I have turned on the Flight Mode or got no internet connection, iCloud is not able ...
3
votes
4answers
602 views

NSUbiquitousKeyValueStore sync issues

I'm having nothing but trouble with NSUbiquitousKeyValueStore and getting it to reliably sync across two devices. It's starting to drive me mad. Mad. I watch my code make a call to: ...
0
votes
2answers
127 views

I wonder why I got freeze of app when call [NSUbiquitouskeyValueStore synchronize]

Sometimes it stops freezing after several minutes ago, sometimes I wait for 10 minutes and then force quit it. When stop and look in thread calls, I see semaphore trap from NSUbiquitouskeyValueStore ...
0
votes
1answer
538 views

How to programmingly detect if the iCloud is enabled on user's device when only use NSUbiquitousKeyValueStore?

I am using NSUbiquitousKeyValueStore to sync some preference data to iCloud.I found that if the user disable "Document & Data" item of iCloud in "Setting App",NSUbiquitousKeyValueStore can not ...
1
vote
2answers
279 views

Build xCode project for xCode 3.2.5 and xCode 4.3.2 with NSUbiquitousKeyValueStore class

I've my iPhone project on the xCode 4.3.2 and it works well. It uses NSUbiquitousKeyValueStore class and it's base SDK is iOS 5.0. Now I am going to build my project on the xCode 3.2.5 and it says ...
1
vote
1answer
1k views

has no valid com.apple.developer.ubiquity-kvstore-identifier entitlement AD HOC iCloud

im having trouble with iCloud key value store.. I currently have a core data synced by iCloud working, but i cannot get K-V Store to work Im getting: com.domain.appname has no valid ...
0
votes
0answers
665 views

No valid com.apple.developer.ubiquity-kvstore-identifier entitlement [duplicate]

Possible Duplicate: NSUbiquitousKeyValueStore error: no valid com.apple.developer.ubiquity-kvstore-identifier entitlement I am trying to integrate iCloud key-value storage with my app. I ...
5
votes
4answers
7k views

NSUbiquitousKeyValueStore error: no valid com.apple.developer.ubiquity-kvstore-identifier entitlement

I'm having a problem integrating iCloud with my app. When I set test out iCloud availability, I receive Success for the function NSURL *iCloudURL = [fileManager ...
5
votes
2answers
3k views

How to use NSUbiquitousKeyValueStore and NSUserDefaults together

Documentation is not clear on how to use NSUbiquitousKeyValueStore with edge cases. If I want to set a value, I understand that I should set a value to both NSUserDefaults and ...