Type Function Return value none Revision 2017.3060 Keywords iCloud, sync, storage, document, docInit See also iCloudDocEvent iCloud.*
Initializes document (file) storage/sharing for the app and invokes the onComplete
listener function with an iCloudDocEvent.
iCloud.docInit( params )
Table. Table containing
Valid keys for the params
table include:
onComplete
— Required listener function to be invoked with an iCloudDocEvent.
containerId
— Optional string value indicating a specific iCloud Container to be used for document storage. Do not pass this parameter if you have only one iCloud Container associated with your app.
local function docListener( event ) if event.isError then print( "iCloud file storage is not available!" ) end end iCloud.docInit( { onComplete=docListener } )