stringByAbbreviatingWithTildeInPath
~付のディレクトリ(フォルダ)を返します
解説
~付のディレクトリ(フォルダ)を返します。
返り値
( NSString * )
チルダ付きの文字列
引数
フレームワーク
Foundation
クラス
NSString
Instance Methods
使用可能
10.0
例文
#import "SetImage.h" @implementation SetImage - (IBAction)set:(id)sender { //開けるファイル拡張子の配列 NSArray *imgTypes = [ NSArray arrayWithObject : @"tiff" ]; //OpenPanelを作る NSOpenPanel *opImage = [ NSOpenPanel openPanel ]; //OpenPanelの結果のボタン番号 int opRet; //OpenPanelでファイル選択 opRet = [ opImage runModalForDirectory : NSHomeDirectory() //どこのディレクトリを出すか file : @"Pictures" //どのファイルを選択しておくか types : imgTypes ];//選べるファイルタイプ if ( opRet == NSOKButton ) { // OPENPanelのボタンがOKなら NSLog([[ opImage filename ] stringByAbbreviatingWithTildeInPath]); } } @end