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