マウスがレシーバーのカーソル矩形を出るとき呼び出されます
-(void)mouseExited:(NSEvent *)anEvent:
解説
マウスがレシーバーのカーソル矩形を出るとき呼び出されます。
返り値
( void )
なし
引数
( NSEvent * )anEvent
イベント
フレームワーク
ApplicationKit
クラス
NSCursor
Instance Methods
使用可能
10.0
参照
- setOnMouseExited:
- isSetOnMouseExited
例文
#import "MyObject.h" #import "MyCursor.h" @implementation MyObject //Imageを作る NSImage *img; static MyCursor *cur = nil; - (IBAction)myAction:(id)sender { cur = [[MyCursor allocWithZone:[self zone]] initWithImage:img hotSpot:NSMakePoint(2.0,2.0)]; [cur setOnMouseExited:YES]; if ([cur isSetOnMouseExited]){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } @end