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 ?
相关问题
- Views base64 encoded blob in HTML with PHP
- How to get the background from multiple images by
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
相关文章
- Could I create “Call” button in HTML 5 IPhone appl
- Use savefig in Python with string and iterative in
- Unable to process app at this time due to a genera
- Where does this quality loss on Images come from?
- Specifying image dimensions in HTML vs CSS for pag
- How to insert pictures into each individual bar in
- Popover segue to static cell UITableView causes co
- How do you detect key up / key down events from a
As long as you give a valid ubiquity container identifier below method should return
YES
:However, I've found that calling
URLForUbiquityContainerIdentifier:
might take time (several seconds) the very first time within a session. So, just make sure you call this in the background to not block the UI temporarily:If you want to know if iCloud is activated you could simply call:
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.