NSOpnPanel *panel = [NSOpenPanel openPanel];
NSArray *fileTypes = [[NSArray alloc] initWithObjects:@"txt", @"doc",,,nil]; [panel setAllowedFileTypes:fileTypes]; if ( NSOKButton == [panel runModal] ) { // do work }
reference
NSOpnPanel *panel = [NSOpenPanel openPanel];
NSArray *fileTypes = [[NSArray alloc] initWithObjects:@"txt", @"doc",,,nil]; [panel setAllowedFileTypes:fileTypes]; if ( NSOKButton == [panel runModal] ) { // do work }
reference