小编Kan*_*vas的帖子

当我使用 UIDocumentPickerViewController 从 iCloud 中选取 zip 文件时,无法与辅助应用程序通信

每当我从我的应用程序中使用 UIDocumentPickerviewcontroller 从 iCloud 中选择文件时,它都会在iPhone模拟器上显示此警报。

在此处输入图片说明

NSArray *types = @[(NSString*)kUTTypeArchive];
UIDocumentPickerViewController *docPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:types inMode:UIDocumentPickerModeImport];
docPicker.delegate = self;
docPicker.modalPresentationStyle = UIModalPresentationPopover;
[self presentViewController:docPicker animated:YES completion:nil];
Run Code Online (Sandbox Code Playgroud)

simulator objective-c ios icloud uidocumentpickerviewcontroller

3
推荐指数
1
解决办法
2670
查看次数