ファイルタイプを指定してオープンパネルを開きます
-(int)runModalForTypes:(NSArray *)fileTypes:
解説
ファイルタイプを指定してオープンパネルを開きます。
OKボタンをクリックすればNSOKButtonを返します。
キャンセルボタンをクリックすればNSCancelButtonを返します。
【fileTypes】 選択できるファイルタイプの配列、拡張子は"txt","pdf"などと表記、ファイルタイプは"'TEXT'","'JPEG'"などと表記します。nilなら全てのファイルが表示されます。
OKかキャンセルを押したら、モーダルイベントループを終わってNSOKButtonかNSCancelButtonを返します。
● NSOKButton OKボタンを押した。
● NSCancelButton Cancelボタンを押した。
返り値
( int )
整数値
引数
( NSArray * )fileTypes
ファイルタイプ
フレームワーク
ApplicationKit
クラス
NSOpenPanel
Instance 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 runModalForTypes:fileTypes]; if (opRet == NSOKButton){ NSLog([opanel filename]); [info setStringValue:[opanel filename]]; }else{ NSLog(@"Cansel"); } } @end