5 questions
1
vote
0
answers
477
views
iOS - UIDocumentMenuViewController presented from within WKWebView dismisses parent view controller
This question is similar to other questions like this and this, with a few differences:
It concerns UIDocumentMenuViewController instead of UIDocumentPickerViewController. The former has been ...
3
votes
0
answers
59
views
UIDocumentMenuViewController have wrong frame listView
Good day to all. I support the old version of the application written on Objective C . I want to implement a functional - File Browser(File Provider). But using UIDocumentMenuViewController or ...
1
vote
0
answers
154
views
UIDocumentMenuViewController showing single browse option
I try to import files to my app via the following code:
let importMenu = UIDocumentMenuViewController(documentTypes: [String(kUTTypeData)], in: .import)
importMenu.delegate = self
...
2
votes
2
answers
722
views
How to get the source of the files from UIDocumentMenuViewController or UIDocumentPickerViewController?
I have successfully implemented a feature letting the user pick a file to my app through UIDocumentMenuViewController and UIDocumentPickerViewController.
But I cannot find out how can I detect the ...
0
votes
0
answers
56
views
Restrict document types for only PDF and Word documents [duplicate]
I'm using the UIDocumentMenuViewController to pick and choose documents. I want to restrict users to pick only .pdf and .docx files.
I know I can allow only PDFs like this.
...