| 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
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSDrawer | 修正日2006.12.26 |