我的应用程序中有iCloud支持。我成功地在iCloud中保存了数据库。但是当我尝试使用下面的代码
下载此数据库文件时NSFileManager *fm = [NSFileManager defaultManager];
NSURL *ubiq = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];
if (ubiq == nil) {
return;
}
NSError *theError = nil;
NSURL *url = [[ubiq URLByAppendingPathComponent:@"Documents" isDirectory:true] URLByAppendingPathComponent:fileName];
bool started = [fm startDownloadingUbiquitousItemAtURL:url error:&theError];
NSLog(@"started download for %@ %d", fileName, started);
if (theError != nil) {
NSLog(@"iCloud error: %@", [theError localizedDescription]);
}
else
{
}
下载开始成功,但我不知道它将在何处下载或目标路径是什么。如何将此文件保存到应用程序的本地目录。请帮忙