I have created a new appID and enabled iCloud on iTunes Connect. I have enabled entitlements within the app from the summary section. I have included this code for checking for iCloud availability:
NSURL *ubiq = [[NSFileManager defaultManager]
URLForUbiquityContainerIdentifier:nil];
if (ubiq) {
NSLog(@"iCloud access at %@", ubiq);
// TODO: Load document...
} else {
NSLog(@"No iCloud access");
}
All I need to do is a method to save an NSArray to the cloud and one to be able to download it. Yet, I’m having a hard time wading through the docs to figure out exactly what they should look like. Thanks for the help!!
Have a look at iCloud basics and code sample
It basically shows you a working example – something which is missing from the Apple docs. Nonetheless, the docs are really good as pointed out by Hubert, so it’s not a replacement. It just get’s you started and will get you interested in reading the docs.