macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

mouseExited:

マウスがレシーバーのカーソル矩形を出るとき呼び出されます
-(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