I did everything on this tutorial to implement a key/value store on my App. I need to save and restore exactly one string on iCloud, a string containing about 30 characters. Just that, but it seems to be impossible.
I have added this to the delegate
NSUbiquitousKeyValueStore *icloud = [NSUbiquitousKeyValueStore defaultStore];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(storeChanged:)
name:NSUbiquitousKeyValueStoreDidChangeExternallyNotification
object:icloud];
[icloud synchronize];
the notification is never triggered. I can change the value how many times I want but the notification is never received on the other devices and each device continues to see the old value the variable had (they are probably reading it from a local cache).
What should I verify?
storeChanged:(including the one parameter) exist (the method in your@selector)? – Robotic Cat Dec 5 '12 at 23:18