Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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];
like image 349
Kannan Srinivas Avatar asked Dec 05 '25 00:12

Kannan Srinivas


1 Answers

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.

like image 173
Anjali Shah Avatar answered Dec 06 '25 13:12

Anjali Shah