NSDrawer:drawerWillOpen:
Home 目次>ApplicationKit>NSDrawer

drawerWillOpen:

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


-(void) drawerWillOpen:(NSNotification *)notification


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


【解説】

引き出しを開けようとする時に呼ばれます。
open:で開けようとする場合、drawerShouldOpen:の後に呼ばれます。



【例文】


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

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

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

@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