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?

link|improve this question
What is the @"2VHM28566N.com.eept.TestICloud"? When I do this, I just pass nil as the argument. Could you explain what this does please? – allthewayapps Nov 27 '11 at 18:45
2VHM28566N.com.eept.TestICloud is 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
feedback

1 Answer

I tried to run my iCloud app today on the simulator and there is no option to enable iCloud in the simulator as far as I can see. I looked in settings, but no luck. So the answer would be no, you can't really test iCloud unless you test it on an actual device.

If anyone has a workaround, that would be fabulous. It's a bit tedious to always test your app on the device.

link|improve this answer
2  
That is correct, iCloud and the simulator do not go along. – NSSplendid Nov 25 '11 at 15:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.