In a MacOs application, Is it possible to navigate to a connected iOS device?
I have a trusted iPad that I can see in the finder, however I cannot see it in my application using an NSOpenPanel.
Is it possible to do so?
Thanks
In a MacOs application, Is it possible to navigate to a connected iOS device?
I have a trusted iPad that I can see in the finder, however I cannot see it in my application using an NSOpenPanel.
Is it possible to do so?
Thanks
@IBAction func selectLisaIngestPreviewFolder(_ sender: Any) { let openPanel = NSOpenPanel() openPanel.canChooseFiles = false openPanel.canChooseDirectories = true openPanel.message = "Select Lisa Preview folder" let response = openPanel.runModal() switch response.rawValue { case 1000: print(response.rawValue) case 1001: print(response.rawValue) default: return } }