views:

15

answers:

1

Hi, I justa want to know if there's a class like GtkFileChooserDialog in Cocoa. This class is used in gtk for opening a file.

A: 

Yes there is, NSOpenPanel.

NSOpenPanel *panel = [NSOpenPanel openPanel];
int result = [panel runModal];
if (result == NSOKButton) {
    NSArray *allSelectedFiles = [panel URLs];
    NSURL *selectedFileURL = [allSelectedFiles objectAtIndex:0];
    NSLog(@"Selected: %@", selectedFileURL);
}

NSOpenPanel Class Reference

fluchtpunkt
Thx! I tried looking for NSFileChooser, NSDialog and nothing came up.
gvalero87