123456789101112131415161718192021222324 |
- //
- // DocumentPickerViewController.swift
- // Picker
- //
- // Created by Marino Faggiana on 27/12/16.
- // Copyright © 2016 TWS. All rights reserved.
- //
- import UIKit
- class DocumentPickerViewController: UIDocumentPickerExtensionViewController {
- @IBAction func openDocument(_ sender: AnyObject?) {
- let documentURL = self.documentStorageURL!.appendingPathComponent("Untitled.txt")
-
- // TODO: if you do not have a corresponding file provider, you must ensure that the URL returned here is backed by a file
- self.dismissGrantingAccess(to: documentURL)
- }
-
- override func prepareForPresentation(in mode: UIDocumentPickerMode) {
- // TODO: present a view controller appropriate for picker mode here
- }
- }
|