macOS/iOS API解説

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

目次

filenames

選択したファイルのファイル名のパスを返します

解説

選択したファイルのファイル名の絶対パスを返します。
ファイル名(NSString)の配列(NSArray)を返します。

返り値

( NSArray * )

選択ファイル名の配列

引数

フレームワーク

ApplicationKit

クラス

NSOpenPanel

Instance Methods

使用可能

10.0

参照

- URLs

例文

#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 filenames] description]];
}else{
NSLog(@"Cansel");
}
}
-(void)didEndSaveSheet:(NSSavePanel *)savePanel returnCode:(int)returnCode conextInfo:(void *)contextInfo
{
}
@end