macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

runModalForTypes:

ファイルタイプを指定してオープンパネルを開きます
-(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