| Home 目次>ApplicationKit>NSDocumentController | |
displayNameForType:
文書タイプで表示名を返します
-(NSString *) displayNameForType:(NSString *)docType
【返り値】 | |
| NSString * | 表示名 |
| 【パラメータ】 | |
| docType | 文書タイプ |
【解説】
文書タイプで表示名を返します。
【例文】
#import "MyObject.h"
#import "MyDocumentController.h"
@implementation MyObject
- ( IBAction )myAction:( id )sender
{
MyDocumentController *dController1 = [MyDocumentController sharedDocumentController];
id doc1;
NSOpenPanel *oPanel = [NSOpenPanel openPanel];
doc1 = [dController1 makeUntitledDocumentOfType: @"txt" ];
// ファイル選択
NSLog([NSString stringWithFormat: @"%d" ,
[dController1 runModalOpenPanel:oPanel
forTypes:[NSArray arrayWithObject: @"txt" ]]
]);
NSLog([dController1 displayNameForType: @"txt" ]);
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSDocumentController | 修正日2006.12.26 |