How to create an Open File dialogue with NSOpenPanel
NSOpenPanel is surprisingly easy to use: create the panel, call the openPanel method, and handle the returned URL object in a block. In this example we invoke the panel from a button in the main window, then display the returned URL in a textLabel: – (IBAction)loadFile:(id)sender { // create an open documet panel NSOpenPanel *panel […]