macOS/iOS API解説

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

目次

drawerWillClose:

引き出しを閉じようとする時に呼ばれます
-(void)drawerWillClose:(NSNotification *)notification:

解説

引き出しを閉じようとする時に呼ばれます。
close:で閉じられる場合、drawerShouldClose:のあとに呼ばれます。

返り値

( void )

なし

引数

( NSNotification * )notification

通知

フレームワーク

ApplicationKit

クラス

NSDrawer

Instance Methods

使用可能

10.0

参照

例文

#import "Drawerdeligate.h"
//drawerのデリゲート
@implementation Drawerdeligate

-(BOOL)drawerShouldClose:(NSDrawer *)sender
{
NSLog(@"drawerShouldClose");
return YES;
}

-(void)drawerWillClose:(NSNotification *)notification
{
NSLog(@"drawerWillClose");
}

@end