ファイル選択画面を返します
解説
ファイル選択画面を返します。
すでにあれば、そのNSOpenPanelを返します。なければ作って返します。
返り値
( NSOpenPanel * )
オープンパネル
引数
フレームワーク
ApplicationKit
クラス
NSOpenPanel
Class Methods
使用可能
10.0
参照
例文
#import "Controller.h" @implementation Controller - (IBAction)pushButton:(id)sender { NSOpenPanel *opanel = [NSOpenPanel openPanel]; NSArray *fileTypes = [NSArray arrayWithObjects:@"jpg",@"pdf",@"txt",@"'JPEG'",@"'TEXT'",nil]; int opRet; opRet = [opanel runModalForDirectory:NSHomeDirectory() file:nil types:fileTypes ]; if (opRet == NSOKButton){ NSLog([opanel filename]); [info setStringValue:[opanel filename]]; }else{ NSLog(@"Cansel"); } } -(void)didEndSaveSheet:(NSSavePanel *)savePanel returnCode:(int)returnCode conextInfo:(void *)contextInfo { switch (returnCode){ case NSOKButton: NSLog(@"NSOKButton"); case NSCancelButton: NSLog(@"NSCancelButton"); default: NSLog(@"other"); } } @end