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);
}
fluchtpunkt
2010-10-12 14:59:10
Thx! I tried looking for NSFileChooser, NSDialog and nothing came up.
gvalero87
2010-10-12 15:51:54