You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
files are not reflecting in iCloud when I am using save method of "iCloudDocumentSync".
I am using below code.
[[iCloud sharedCloud] setDelegate:self]; // Set this if you plan to use the delegate
[[iCloud sharedCloud] setVerboseLogging:YES]; // We want detailed feedback about what's going on with iCloud, this is OFF by default
[[iCloud sharedCloud] setupiCloudDocumentSyncWithUbiquityContainer:@"iCloud.com.spartix"];
[[iCloud sharedCloud] saveAndCloseDocumentWithName:@"Name.jpg" withContent:[[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:strUrl]] completion:^(UIDocument *cloudDocument, NSData *documentData, NSError *error) {
if (error == nil) {
// Code here to use the UIDocument or NSData objects which have been passed with the completion handler
}
}];
The text was updated successfully, but these errors were encountered:
files are not reflecting in iCloud when I am using save method of "iCloudDocumentSync".
I am using below code.
The text was updated successfully, but these errors were encountered: