개발관련/Mac
using NSOpenPanel
자두맛쭝이
2012. 4. 5. 17:16
NSOpnPanel *panel = [NSOpenPanel openPanel];
NSArray *fileTypes = [[NSArray alloc] initWithObjects:@"txt", @"doc",,,nil]; [panel setAllowedFileTypes:fileTypes]; if ( NSOKButton == [panel runModal] ) { // do work }
reference