iOS загрузить файл с iCloud Drive
В моем приложении для iOS я храню некоторые файлы в папке iCloud Drive для резервного копирования. Теперь я хочу получить этот файл, но я не знаю, как правильно это сделать. Я имею в виду, если есть какой-то конкретный метод для iCloud Drive или я могу просто получить его из URL.
Я сохраняю файл в iCLoud следующим образом ( /questions/36229502/sohranit-dokumentyi-ios-8-na-icloud-drive/36229504#36229504):
- (void) storeToIcloud
{
// Let's get the root directory for storing the file on iCloud Drive
[self rootDirectoryForICloud:^(NSURL *ubiquityURL) {
if (ubiquityURL) {
// We also need the 'local' URL to the file we want to store
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0]; //Get the docs directory
NSString *filePath = [documentsPath stringByAppendingPathComponent:@"myFile.xml"]; //Add the file name
NSURL *localURL = [NSURL fileURLWithPath:filePath];
// Now, append the local filename to the ubiquityURL
ubiquityURL = [ubiquityURL URLByAppendingPathComponent:localURL.lastPathComponent];
// And finish up the 'store' action
NSError *error;
if (![[NSFileManager defaultManager] setUbiquitous:YES itemAtURL:localURL destinationURL:ubiquityURL error:&error]) {
NSLog(@"Error occurred: %@", error);
}
}
else {
NSLog(@"Could not retrieve a ubiquityURL");
}
}];
}
- (void)rootDirectoryForICloud:(void (^)(NSURL *))completionHandler {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSURL *rootDirectory = [[[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil]URLByAppendingPathComponent:@"Documents"];
if (rootDirectory) {
if (![[NSFileManager defaultManager] fileExistsAtPath:rootDirectory.path isDirectory:nil]) {
NSLog(@"Create directory");
[[NSFileManager defaultManager] createDirectoryAtURL:rootDirectory withIntermediateDirectories:YES attributes:nil error:nil];
}
}
dispatch_async(dispatch_get_main_queue(), ^{
completionHandler(rootDirectory);
});
});
}
- (NSURL *)localPathForResource:(NSString *)resource ofType:(NSString *)type {
NSString *documentsDirectory = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *resourcePath = [[documentsDirectory stringByAppendingPathComponent:resource] stringByAppendingPathExtension:type];
return [NSURL fileURLWithPath:resourcePath];
}
Как я могу сделать для загрузки файла с диска iCloud?
Заранее спасибо.
1 ответ
Вы должны использовать NSMetadataQuery, чтобы получить элемент из icloud, затем, когда вы подключили закладку к файлу, используйте NSFileCoordination для его чтения, этот же метод можно использовать для чтения из облака или из изолированной программной среды вашего приложения... Все объясняется в подробнее здесь: Создание приложений на основе документов, и есть даже некоторый пример кода, которому вы можете следовать. Надеюсь это поможет!