How to open file dialog with SwiftUI on platform "UIKit for Mac"?
Asked Answered
M

2

14

NSOpenPanel is not available on platform "UIKit for Mac": https://developer.apple.com/documentation/appkit/nsopenpanel

If Apple doesn't provide a built-in way, I guess someone will create a library based on SwiftUI and FileManager that shows the dialog to select files.

Machine answered 18/6, 2019 at 9:23 Comment(0)
A
16

Here's a solution to select a file for macOS with Catalyst & UIKit

In your swiftUI view :

Button("Choose file") {
    let picker = DocumentPickerViewController(
        supportedTypes: ["log"], 
        onPick: { url in
            print("url : \(url)")
        }, 
        onDismiss: {
            print("dismiss")
        }
    )
    UIApplication.shared.windows.first?.rootViewController?.present(picker, animated: true)
}

The DocumentPickerViewController class :

class DocumentPickerViewController: UIDocumentPickerViewController {
    private let onDismiss: () -> Void
    private let onPick: (URL) -> ()

    init(supportedTypes: [String], onPick: @escaping (URL) -> Void, onDismiss: @escaping () -> Void) {
        self.onDismiss = onDismiss
        self.onPick = onPick

        super.init(documentTypes: supportedTypes, in: .open)

        allowsMultipleSelection = false
        delegate = self
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

extension DocumentPickerViewController: UIDocumentPickerDelegate {
    func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
        onPick(urls.first!)
    }

    func documentPickerWasCancelled(_ controller: UIDocumentPickerViewController) {
        onDismiss()
    }
}
Aalborg answered 28/2, 2020 at 13:13 Comment(1)
Excellent solution. I had been looking for one for some time without succeeding. Congratulations.Shahjahanpur
N
8

Both UIDocumentPickerViewController and UIDocumentBrowserViewController work in Catalyst. Use them exactly as you would on iOS and they will “magically” appear as standard Mac open/save dialogs.

Nice example here if you need it: https://appventure.me/guides/catalyst/how/open_save_export_import.html

Newsboy answered 7/8, 2019 at 16:28 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.