| Home 目次>ApplicationKit>NSDocumentController | |
closeAllDocumentsWithDelegate:didCloseAllSelector:contextInfo:
全てのドキュメントを閉じます
-(void) closeAllDocumentsWithDelegate:(id)delegate
didCloseAllSelector:(SEL)didAllCloseSelector
contextInfo:(void *)contextInfo
【返り値】 | |
| void | なし |
| 【パラメータ】 | |
| delegate | デリゲート |
| didAllCloseSelector | セレクタ |
| contextInfo | 追加情報 |
【解説】
全てのドキュメントを閉じます。
【例文】
#import "MyObject.h"
#import "MyDocumentController.h"
@implementation MyObject
- ( IBAction )myAction:( id )sender
{
MyDocumentController *dController1 = [MyDocumentController sharedDocumentController];
[dController1 closeAllDocumentsWithDelegate: self
didCloseAllSelector: @selector (cls:)
contextInfo: nil
];
}
-( void )cls:( id )sender
{
NSLog( @"Bye" );
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSDocumentController | 修正日2006.12.26 |