我正在尝试使用UIDocumentPickerViewController
.
尝试设置allowsMultipleSelection = true
,但在出现选择器时仍然没有“选择”选项。
代码片段:
UIDocumentPickerViewController *dvc = [[UIDocumentPickerViewController alloc]initWithDocumentTypes:arrContents inMode:UIDocumentPickerModeImport];
dvc.delegate = self;
dvc.allowsMultipleSelection = true;
[self presentViewController:dvc animated:true completion:nil];