缺少用于浏览其他位置的 "Edit" 按钮,例如在 UIDocumentPickerViewController 实现中启用 Dropbox、Google 驱动器等

Missing "Edit" button for Browse other locations like to enable Dropbox, Google drive & Etc in UIDocumentPickerViewController implementtion

Missing Edit button for Access/Disable another cloud drives

UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:types inMode:UIDocumentPickerModeImport];
documentPicker.delegate = self;
//documentPicker.editButtonItem.enabled = true;
//documentPicker.modalPresentationStyle =UIModalPresentationFormSheet;
[self presentViewController:documentPicker animated:YES completion:nil];

任何人都可以向我建议如何启用右上角的 Edit 按钮并为其他驱动器执行 Enable/Disable ,例如:(Dropbox,Google 驱动器,iCloud) 从列表中?(这些驱动器已经安装在我的设备中)。

另外,我如何才能从驱动器中仅访问 Excel 和 Google 工作表文件? 提前谢谢你。

无法添加编辑按钮。如果需要,请提交错误。用户可以在“文件”应用中编辑列表,这将反映在您的选择器中。

对于第二个问题,您可以在选择器的初始化程序中设置用户可以 select 的文件的 UTI(您的 « types@ 参数)