gpt4 book ai didi

ios - 无法使用 UIDocumentPickerViewController 选择多个文件

转载 作者:技术小花猫 更新时间:2023-10-29 10:37:37 57 4
gpt4 key购买 nike

我正在尝试使用 UIDocumentPickerViewController 从文件应用程序中一次导入/选择多个文件。

尝试设置allowsMultipleSelection = true,但在显示选择器时仍然没有“Select”选项。

代码片段:

UIDocumentPickerViewController *dvc = [[UIDocumentPickerViewController alloc]initWithDocumentTypes:arrContents inMode:UIDocumentPickerModeImport];
dvc.delegate = self;
dvc.allowsMultipleSelection = true;
[self presentViewController:dvc animated:true completion:nil];

截图: enter image description here

最佳答案

这是 Apple 需要修复的错误。您可以使用此解决方法。如果将 animated: 设置为 YES,它只会在您第一次显示文档选择器时起作用。

objective-C :

[self presentViewController:dvc animated:NO completion:^{
if (@available(iOS 11.0, *)) {
dvc.allowsMultipleSelection = YES;
}
}];

swift 4:

self.present(dvc, animated: false) {
if #available(iOS 11.0, *) {
dvc.allowsMultipleSelection = true;
}
}

关于ios - 无法使用 UIDocumentPickerViewController 选择多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47053082/

57 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com