Код: Выделить всё
UIDocumentPickerViewController *picker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[(NSString *)kUTTypeJPEG] inMode:UIDocumentPickerModeOpen];
picker.delegate = self;
picker.directoryURL = ubiquityURL;
picker.presentationController.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
Я что-то упускаю что позволяет удалять файлы, как и раньше?
Подробнее здесь: https://stackoverflow.com/questions/786 ... long-press