Search code examples
iosobjective-cicloudsimulatoruidocumentpickerviewcontroller

Couldn't communicate with a helper application when i pick the zip file from the iCloud using UIDocumentPickerViewController


Whenever i pick the file from the iCloud using UIDocumentPickerviewcontroller from my application but it will show this alert on iPhone simulator.

enter image description here

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];

Solution

  • I think it's problem in only new Xcode 11.2.1 Simulator OS 13.2.

    Because I also try in Xcode 10.2 and XS Max, It's work properly.

    In all Device work properly so don't worry about this alert.

    Hope it will be solve by Apple soon.