I'm aware that iOS has API's to integrate iCloud for the apps. Can I integrate iCloud in mac apps as well? Will the implementation be different for Mac apps to integrate iCloud? If Yes, are there any tutorials etc or reference websites?
|
feedback
|
|
Yes. iCloud is available on the Mac. When Lion & iCloud still were under NDA I posted my findings in Apple's devforums. I am using a modified version of the WWDC 2011 Session 107 code. (transcribed from the video) I had to remove the manual instantiation of NSFileCoordinator to get the sample working (the speaker mentions that the coordinator "might not be needed in the future"):
The above IBAction is connected to a NSMenuItem that checks if the document is already in iCloud or if it needs to be uploaded:
Checklist for non-code tasks that are necessary to get iCloud document storage working:
| |||||
feedback
|
|
There is a document by Apple that is prety detailed in all aspects http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/iCloud/iCloud.html One significant issue with the code posted here is that it does not have the team in the identifier given to URLForUbiquityContainerIdentifier even if it is mentioned in the checklist, leaving it nil altogether to be automatically filled from the entitlements seems like the best aproach. Personally the only changes i had to do to get iCloud going in my app were :
That was all, here is a hopefully clearer sample code (should work for both iOS and OSX) :
| ||||
|
feedback
|