Package apple.uikit.protocol
Interface UIDocumentBrowserViewControllerDelegate
-
public interface UIDocumentBrowserViewControllerDelegate
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceUIDocumentBrowserViewControllerDelegate.Block_documentBrowserDidRequestDocumentCreationWithHandler
-
Method Summary
-
-
-
Method Detail
-
documentBrowserApplicationActivitiesForDocumentURLs
default NSArray<? extends UIActivity> documentBrowserApplicationActivitiesForDocumentURLs(UIDocumentBrowserViewController controller, NSArray<? extends NSURL> documentURLs)
Allows clients to add application specific UIActivity instances
-
documentBrowserDidImportDocumentAtURLToDestinationURL
default void documentBrowserDidImportDocumentAtURLToDestinationURL(UIDocumentBrowserViewController controller, NSURL sourceURL, NSURL destinationURL)
-
documentBrowserDidPickDocumentURLs
default void documentBrowserDidPickDocumentURLs(UIDocumentBrowserViewController controller, NSArray<? extends NSURL> documentURLs)
Called when the user validates a selection of items to open or pick. If you have created this document manager to open files, you should then open the document, potentially using a @c UIDocumentBrowserTransitionController for the transition.
-
documentBrowserDidRequestDocumentCreationWithHandler
default void documentBrowserDidRequestDocumentCreationWithHandler(UIDocumentBrowserViewController controller, UIDocumentBrowserViewControllerDelegate.Block_documentBrowserDidRequestDocumentCreationWithHandler importHandler)
When the user requests the creation of a new document, this method will be called. The application can then, optionally, present UI it deems appropriate to let the user configure the new document (for example, it could show a list of templates). When done, create an empty document or a copy of your template to a temporary location. Then use the importHandler to pass the document URL to be imported. If the user cancels the document creation, it's still expetected to call importHandler(nil, UIDocumentBrowserImportModeNone). The Document Browser will asynchronously move the document to its final destination and call back one of the following delegate methods: -documentBrowser:didImportDocumentURL:toDestinationURL: -documentBrowser:failedToImportDocumentAtURL:error: The app should wait for the delegate callbacks before presenting the imported document at the destination URL. Usage of UIDocument is recommended. If you do not implement this method, document creation will not be available.
-
documentBrowserFailedToImportDocumentAtURLError
default void documentBrowserFailedToImportDocumentAtURLError(UIDocumentBrowserViewController controller, NSURL documentURL, NSError error)
-
documentBrowserWillPresentActivityViewController
default void documentBrowserWillPresentActivityViewController(UIDocumentBrowserViewController controller, UIActivityViewController activityViewController)
Implement this to customize the UIActivityViewController before it's presented.
-
documentBrowserDidPickDocumentsAtURLs
default void documentBrowserDidPickDocumentsAtURLs(UIDocumentBrowserViewController controller, NSArray<? extends NSURL> documentURLs)
-
-