NSDrawer:drawerWillClose:
Home 目次>ApplicationKit>NSDrawer

drawerWillClose:

引き出しを閉じようとする時に呼ばれます


-(void) drawerWillClose:(NSNotification *)notification


【返り値】
   voidなし
【パラメータ】
   notification通知


【解説】

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



【例文】


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

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

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

@end


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

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

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

良い 

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

Home 目次>ApplicationKit>NSDrawer
修正日2006.12.26