I use a UIDocumentPickerViewController with import mode (UIDocumentPickerModeImport) to allow the user to import documents from cloud storage providers (dropbox, etc.). Each time the user repeats the import process, he should look at the hierarchy of his folders, starting from the root of the cloud storage.
Is there any way to present the document collector in this subdirectory?
I know the method:
[NSURL bookmarkDataWithOptions:includingResourceValuesForKeys:relativeToURL:error:]
But I canβt connect the dots with the presentation options of the document collector. I would expect the selection option to represent the document picker at the given bookmark URL.
source share