uidocumentpickerviewcontroller Questions
5
I have a query regarding delegate method not been getting called for DocumentPickerViewController, here's the background, I just need to import the resource whatever available from my Files App and...
Woolson asked 17/1, 2019 at 11:25
2
Method is deprecated from iOS 14, so need support for both iOS 14 and later. And iOS 13 and earlier.
Opalescent asked 4/9, 2021 at 11:13
1
Solved
I am presenting the UIDocumentUIPickerViewController from a view controller like this:
let documentPicker = UIDocumentPickerViewController(
documentTypes: [String(kUTTypePDF), String(kUTTypeImage)...
Marin asked 13/10, 2022 at 13:33
3
Solved
Is there a way to get All of the different UTType extension types as Strings? I need them specifically for images, audio, and video.
I followed this answer, but it doesn't give me all of the extens...
Areca asked 24/11, 2021 at 20:2
2
Solved
I have this code in a UIViewController that confirms to UIDocumentPickerDelegate:
- (void)openTextFilePicker {
NSArray *UTIs = [NSArray arrayWithObjects:@"public.text", nil];
[self openFilePicke...
Unitive asked 4/3, 2020 at 2:4
2
I want to import a document into my application. I have created a Demo to import Document. A demo is working. below is the code of the Demo to open UIDocumentPickerViewController.
-(IBAction) btn...
Acidophil asked 8/1, 2018 at 16:10
2
Solved
This is my code for calling UIDocumentPickerViewController to choose the files for my firmware update which have to be .zip only. When I press on "Select" button, the Document Picker View...
Rorke asked 21/8, 2020 at 10:20
1
Solved
I have an iOS app that is trying to read files from an external storage device without importing them into the App's sandbox.
I have followed Apple's documentations outlined here to do this --
Pr...
Retarded asked 3/3, 2020 at 0:54
3
On my application, i use UIDocumentPickerViewController to allow the user to pick files (import), but starting from iOS 13 that functionality stop working, basically the document picker is open, bu...
Streamliner asked 10/9, 2019 at 1:2
2
I'm using UIDocumentPickerViewController to select documents from the Files and upload it to a server. I'm able to successfully access Files, but upon clicking on the file the delegate method doesn...
Solano asked 15/8, 2018 at 6:56
0
I can pick gallery images with UIImagePickerController and documents with UIDocumentPickerViewController. But my question is, is there any way to pick gallery image and pdf documents with same pick...
Chyou asked 24/10, 2019 at 7:40
1
I've got a custom filetype that I'm trying to allow my app to open from a UIDocumentPickerViewController. It isn't, however, working. (A similar situation and problem seem to be described here, but...
Breslau asked 20/3, 2018 at 2:53
3
Solved
I notice a problem in my UIDocumentPicker's navigation bar at iOS 11 only, the done, cancel, or edit buttons are invisible, and when the user touch it it appears i.e. The color at normal state is w...
Euphonious asked 26/11, 2017 at 12:21
0
I'm trying to download the files contained in a folder hierarchy picked by the UIDocumentPickerController. I use the URL I get from documentPicker:DidPickDocumentsAtURLs: with an NSFileCoordinator....
Parol asked 30/3, 2018 at 14:8
2
I am using UIDocumentPickerViewController with the import mode (UIDocumentPickerModeImport) in order to let the user import documents from cloud storage providers (dropbox, etc).
Each time the user...
Wurtz asked 6/5, 2015 at 9:4
1
© 2022 - 2024 — McMap. All rights reserved.