-1

我正在开发一个与贷款相关的应用程序,用户可以在其中上传他的文件,如工资单、退货单等。为此,我应该向用户展示他/她在他/她的 iPhone 中拥有的所有文件。如何显示文件的选择器?

4

3 回答 3

1

UIDocumentPickerViewController就是你要找的。

您使用您希望能够选择的文档类型列表和模式来初始化一个,该模式通常.open用于直接访问云提供商中的文件。您也可以使用.importwhich 将文件复制到您的容器,而不是让您直接访问云提供商容器中的文件,如果目标只是上传它(您可以在上传后删除副本)。

一旦你创建了你的选择器,你展示它,并实现委托方法didPickDocumentsAt来检索用户选择的文件列表。

查看 Particles 示例代码和今年的 WWDC 会议 « 管理 iOS 应用程序中的文档 »

于 2018-06-18T07:01:09.967 回答
0

iOS 11 或更高版本

let importMenu = UIDocumentPickerViewController.init(documentTypes: ["public.item"], in: UIDocumentPickerMode.import)
  self.present(importMenu, animated: true) {

 } 

请参阅以下链接以获取更多说明 https://www.techotopia.com/index.php/An_iOS_Document_Browser_Tutorial

iOS 10 或更早版本 您可以在文档选择器打开时编写以下函数。它适用于您要上传的所有文件类型。

   func openDocumentPicker() {

        let importMenu = UIDocumentMenuViewController(documentTypes: ["public.item"], in: .import)
        importMenu.delegate = self
        importMenu.modalPresentationStyle = .formSheet
            self.present(importMenu, animated: true, completion: nil)
    }
于 2018-06-18T07:54:06.477 回答
0

当您想在应用程序中上传文档时,只需调用 openDocumentPicker 方法..

import MobileCoreServices  

 func openDocumentPicker() {
        let importMenu = UIDocumentMenuViewController(documentTypes: [kUTTypePDF as String], in: .import)
        importMenu.delegate = self
        self.present(importMenu, animated: true, completion: nil)
    }

创建您的视图控制器扩展

extension ViewController: UIDocumentMenuDelegate {
    func documentMenu(_ documentMenu: UIDocumentMenuViewController, didPickDocumentPicker documentPicker: UIDocumentPickerViewController) {
        documentPicker.delegate = self
        present(documentPicker, animated: true, completion: nil)
    }

    func documentMenuWasCancelled(_ documentMenu: UIDocumentMenuViewController) {
        print("we cancelled")
        dismiss(animated: true, completion: nil)
    }
}

extension ViewController: UIDocumentPickerDelegate {
    internal func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
        do {

let fileAttributes = try FileManager.default.attributesOfItem(atPath: url.path)
            let fileSizeNumber = fileAttributes[FileAttributeKey.size] as! NSNumber
            let fileSizea = fileSizeNumber.doubleValue
            let fileSize = fileSizea/1000000.0

            if fileSize > 5.0 {
                appDelegate.displayAlert(Title: "", Message: "Selected File are too big,Please select file less than 5.0 mb")
            } else {
 let documentData = try Data(contentsOf: url, options: .dataReadingMapped)
 }
        } catch let error {
            print(error.localizedDescription)
        }
    }
}

如果您想访问anpther文档而不是仅使用此代码,则只有在此代码上方您可以访问pdf

/*
        let pdf                                 = String(kUTTypePDF)
        let spreadsheet                         = String(kUTTypeSpreadsheet)
        let movie                               = String(kUTTypeMovie)
        let aviMovie                            = String(kUTTypeAVIMovie)
        let docs                                = String(kUTTypeCompositeContent)
        let img                                 = String(kUTTypeImage)
        let png                                 = String(kUTTypePNG)
        let jpeg                                = String(kUTTypeJPEG)
        let txt                                 = String(kUTTypeText)
        let zip                                 = String(kUTTypeZipArchive)
        let msg1                                = String(kUTTypeEmailMessage)
        let msg2                                = String(kUTTypeMessage)
        let types                               = [pdf, spreadsheet, movie, aviMovie, img, png, jpeg, txt, docs, zip, msg1, msg2]
 */
于 2018-06-18T05:52:10.260 回答