使用しません
-(void)removeCursorRect:(NSRect)aRect: cursor:(NSCursor *)aCursor:
解説
カーソル矩形を取り除きます
resetCursorRectsで自動的に呼び出されるので通常呼び出しません。
返り値
( void )
なし
引数
( NSRect )aRect
範囲
( NSCursor * )aCursor
カーソル
フレームワーク
ApplicationKit
クラス
NSView
Instance Methods
使用可能
10.0
参照
- discardCursorRects
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //Imageを作る NSImage *img; static NSCursor *cur = nil; //NSImageを作ってファイルから読み込む img = [NSImage imageNamed: @"cuimage" ]; cur = [[NSCursor allocWithZone:[self zone]] initWithImage:img hotSpot:NSMakePoint(2.0,2.0)]; [cur set]; [sender addCursorRect : NSMakeRect(0,0,100,100) cursor:cur]; [sender removeCursorRect : NSMakeRect(0,0,50,50) cursor:cur]; } @end