当我使用 UIDocumentPickerViewController 从 iCloud 中选取 zip 文件时,无法与辅助应用程序通信
Couldn't communicate with a helper application when i pick the zip file from the iCloud using UIDocumentPickerViewController
每当我使用我的应用程序中的 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];
我认为这只是新的 Xcode 11.2.1
模拟器 OS 13.2.
的问题
因为我也试过Xcode 10.2
和XS Max,都可以正常使用。
所有设备都正常工作所以不用担心这个警报。
希望Apple尽快解决
每当我使用我的应用程序中的 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];
我认为这只是新的 Xcode 11.2.1
模拟器 OS 13.2.
因为我也试过Xcode 10.2
和XS Max,都可以正常使用。
所有设备都正常工作所以不用担心这个警报。
希望Apple尽快解决