3

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

1 Answers1

3

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.

Anjali Shah
  • 720
  • 7
  • 21