In my App, when I try to run code in the iOS Simulator:
NSURL *iCloudURL = [fileManager URLForUbiquityContainerIdentifier:@"2VHM28566N.com.eept.TestICloud"];
NSLog(@"IS ICloud : %@", [iCloudURL absoluteString]);
It shows that iCloudURL is nil.
Can we use iCloud without an iPhone device?
2VHM28566N.com.eept.TestICloudis the container ID for this person's specific app in question. If you look in your entitlements file or iCloud container list you will see a similar string in any of your apps that use iCloud. If you pass nil as the argument the system will use the first iCloud container it sees in the list. – theMikeSwan Feb 25 at 0:38