IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label Sometimes. Show all posts
Showing posts with label Sometimes. Show all posts

Sunday, January 6, 2013

Sometimes writing to iCloud does not happen. What am I missing?

I have two classes with identical parallel code writing key-value data to the cloud.  One works well.  The other goes through the code, but somehow does not seem to write to the cloud - at least I cannot retrieve it.  I must be missing something.  Here is the code:

 

    NSUbiquitousKeyValueStore *kvStore = [NSUbiquitousKeyValueStore defaultStore];

    [kvStore setString:cloudString9 forKey:name1];

    [kvStore synchronize];

    NSLog(@"PersonViewController - WRITING UPDATE TO CLOUD - key = %@, value = %@", name1, cloudString9);

 

The log comes up and contains the expected string values.  Any suggestions?  Thanks.



View the original article here