NSOpenPanel 썸네일형 리스트형 using NSOpenPanel NSOpnPanel *panel = [NSOpenPanel openPanel];NSArray *fileTypes = [[NSArray alloc] initWithObjects:@"txt", @"doc",,,nil]; [panel setAllowedFileTypes:fileTypes]; if ( NSOKButton == [panel runModal] ) { // do work } referencehttp://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSOpenPanel_Class/Reference/Reference.html 더보기 이전 1 다음