我在尝试从 iCloud 导入时遇到应用文件夹被禁用的问题,请参见下图:
我检查了谷歌驱动器的 iCloud 导入,它没有被禁用,如下图所示:
我需要从其他应用程序的文件夹中获取文档,我做错了什么?
这是我在 info.plist 中的当前设置:
代码:
UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[@"public.item"]
inMode:UIDocumentPickerModeImport];
documentPicker.delegate = self;
documentPicker.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:documentPicker animated:YES completion:nil];