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!!