NSDocumentController:documentForWindow:
Home 目次>ApplicationKit>NSDocumentController

documentForWindow:

ウインドウのドキュメントオブジェクトを返します


-(id) documentForWindow:(NSWindow *)window


【返り値】
   idNSDocumentオブジェクト
【パラメータ】
   windowウインドウ


【解説】

ウインドウのドキュメントオブジェクトを返します。



【例文】


#import "MyObject.h"
#import "MyDocumentController.h"
@implementation MyObject

- (
IBAction )myAction:( id )sender
{
MyDocumentController *dController1 = [MyDocumentController sharedDocumentController];
[[NSApp keyWindow] setDocumentEdited:
YES ];
[dController1 newDocument:
nil ];

NSLog([[dController1 documentForWindow:[NSApp keyWindow]] className]);

}



@end


(C) 2000-2007 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSDocumentController
修正日2006.12.26