ファイルを選択することができるかをセットします
-(void)setCanChooseFiles:(BOOL)flag:
解説
ファイルを選択することができるかをセットします。
返り値
( void )
なし
引数
( BOOL )flag
YES/NO
フレームワーク
ApplicationKit
クラス
NSOpenPanel
Instance Methods
使用可能
10.0
参照
- canChooseFiles
例文
#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; [opanel setAllowsMultipleSelection:YES]; [opanel setCanChooseDirectories:YES]; [opanel setCanChooseFiles:NO]; 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 { } @end