在Swift的Document Picker视图控制器中显示Cloud storages选项

时间:2018-02-16 10:45:10

标签: ios swift cloud-storage uidocumentpickerviewcontroller

我试图在我的文档选择器视图控制器中打开云存储应用程序。我已经应用了文件选择器视图控制器的所有必要的委托方法。当我点击按钮时,它会显示文档选择器视图,但应用程序图标及其名称不会显示在其中。它仅显示选择器视图中的浏览选项。我想展示前面的所有存储空间。我的代码就是这个,

@IBAction func cloudBtnTapped(_ sender: Any) {

    let importMenu = UIDocumentMenuViewController(documentTypes: [String(kUTTypePDF),String(kUTTypeZipArchive), String (kUTTypePNG), String (kUTTypeJPEG), String (kUTTypeText),String (kUTTypePlainText)], in: .import)
    importMenu.delegate = self
    importMenu.modalPresentationStyle = .fullScreen
    self.present(importMenu, animated: true, completion: nil)
}
 func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {

    cico = url as URL as NSURL
    print("The Url is : /(cico)", cico)

    // Start background thread so that image loading does not make app unresponsive
    DispatchQueue.global(qos: .userInitiated).async {

        let imageData:NSData = NSData(contentsOf: self.cico as URL)!

        // When from background thread, UI needs to be updated on main_queue
        DispatchQueue.main.async {
            let image = UIImage(data: imageData as Data)
            self.image1.image = image
        }
    }

    do {
        let weatherData = try NSData(contentsOf: cico as URL, options: NSData.ReadingOptions())
        let activityItems = [weatherData]
        let activityController = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
        if UI_USER_INTERFACE_IDIOM() == .phone {
            self.present (activityController, animated: true, completion: {
                print("Hello")
            })
        }
        else {
            let popup = UIPopoverController(contentViewController: activityController)
            popup.present(from: CGRect(x: CGFloat(self.view.frame.size.width / 2), y: CGFloat(self.view.frame.size.height / 4), width: CGFloat(0), height: CGFloat(0)), in: self.view, permittedArrowDirections: .any, animated: true)
        }
    } catch {
        print(error)
    }
    //optional, case PDF -> render
    //displayPDFweb.loadRequest(NSURLRequest(url: cico) as URLRequest)
}


func documentMenu(_ documentMenu:     UIDocumentMenuViewController, didPickDocumentPicker documentPicker: UIDocumentPickerViewController) {

    documentPicker.delegate = self
    present(documentPicker, animated: true, completion: nil)
}

func documentPickerWasCancelled(_ controller: UIDocumentPickerViewController) {

    print(" cancelled by user")

   // dismiss(animated: true, completion: nil)
    _ = navigationController?.popViewController(animated: true)
}

当点击按钮时,它会显示这样的文档选择器视图,
enter image description here

但我想要这个。像这样的选择器视图,
enter image description here

我该如何展示?

1 个答案:

答案 0 :(得分:1)

UIDocumentMenuViewController会自动显示dropbox这样的选项,谷歌驱动器是你已经将它安装在你的设备上,否则它将无法显示。

您还可以通过以下方法向菜单添加一些自定义选项... addOptionWithTitle:image:order:handler:方法。

您可以使用UIDocumentPickerViewController从文件应用或iCloud Drive中获取文件。

let options = [kUTTypePDF as String, kUTTypeZipArchive  as String, kUTTypePNG as String, kUTTypeJPEG as String, kUTTypeText  as String, kUTTypePlainText as String]

let documentPicker: UIDocumentPickerViewController = UIDocumentPickerViewController(documentTypes: options, in: .import)
documentPicker.delegate = self            
documentPicker.modalPresentationStyle = .fullScreen
self.present(documentPicker, animated: true, completion: nil)


extension YourViewController: UIDocumentPickerDelegate {

   func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {

    //from url you can get selected item
   }
}