macOS/iOS API解説

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

目次

closeAllDocumentsWithDelegate:didCloseAllSelector:contextInfo:

全てのドキュメントを閉じます
-(void)closeAllDocumentsWithDelegate:(id)delegate:
     didCloseAllSelector:(SEL)didAllCloseSelector:
     contextInfo:(void *)contextInfo:

解説

全てのドキュメントを閉じます。

返り値

( void )

なし

引数

( id )delegate

デリゲート

( SEL )didAllCloseSelector

セレクタ

( void * )contextInfo

追加情報

フレームワーク

ApplicationKit

クラス

NSDocumentController

Instance Methods

使用可能

10.0

参照

例文

#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