Document picker enables the selection of a single document from Drive, Box, etc. However, I would like to be able to select a second document prior to leaving the interface so that I do not have to drill down through the folder structure a second time. Unfortunately, the protocol dismisses the pop-up once a document is selected. Ideas, alternatives?
1
-
Since this picker is provided by Apple, I think your best hope is to subclass everything needed (could be quite a bit) and alter as needed. Yes, this is quite a bit of work - but that's what it would take.user7014451– user70144512017-03-01 16:26:07 +00:00Commented Mar 1, 2017 at 16:26
Add a comment
|
2 Answers
Selecting multiple files will be possible with iOS11 by setting “allowMultipleSelection” Boolean to true for your UidocumentPicker https://developer.apple.com/documentation/uikit/uidocumentpickerviewcontroller/2902365-allowsmultipleselection
2 Comments
se_puede_dev
Have you been able to make this work? Even though the
allowsMultipleSelection property is set to true, it still only lets me pick a single file at a time.se_puede_dev
Yes, 11.1.2, but it still will only let me select a single item
They deprecated documentPicker:didPickDocumentAtURL: for documentPicker:didPickDocumentsAtURLs: instead, and exposed allowsMultipleSelection in iOS11, but even with this I do not seem to be able to select multiple urls in the document browser.