3

每当我使用我的应用程序中的 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];
4

1 回答 1

7

我认为只有新的Xcode 11.2.1Simulator OS 13.2 才有问题。

因为我也尝试过Xcode 10.2XS Max,所以它工作正常。

在所有设备正常工作,所以不要担心这个警报。

希望苹果能尽快解决。

于 2019-12-27T05:42:14.183 回答