The new iCloud service has many possible configurations. How may I know if the device of my user is configured to send taken pictures to an iCloud server instead of storing them just on the device ?

link|improve this question

are you talking about Photo Stream or are you talking about iCloud backups? – Michael Dautermann Nov 25 '11 at 10:09
@MichaelDautermann : I'm talking about photos stream, but reading your comment, I'm talking about any mean that may send the iPhone photos to the iCloud in a readable way, so I guess backups are in that scope. – Oliver Nov 25 '11 at 10:11
feedback

1 Answer

If you want to know if iCloud is activated you could simply call:

 NSFileManager *fileManager = [NSFileManager defaultManager];   
 NSURL *cloudURL = [fileManager URLForUbiquityContainerIdentifier:nil];   
 if (cloudURL != nil) {   
    // iCloud is available
 }

This can give you a hint if iCloud is available at all. If you want to use iCloud to store pictures you can build your own stuff. I'm not really sure what you are planning to do.

link|improve this answer
I just want to display a notice if the pictures taken with my app are going to be stored on the iCloud. – Oliver Dec 20 '11 at 10:22
feedback

Your Answer

 
or
required, but never shown

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