Xcode – iOS Document Picker crashes when picking a PDF on a real device
I try to create a Document Picker for my iOS app. Here is my code (I wrapped the UIDocumentPickerViewController in my SwiftUI View, with UIViewControllerRepresentable): import SwiftUI import MobileCoreServices struct DocumentPickerViewController: UIViewControllerRepresentable { var callback: (Data) -> () func makeCoordinator()…