ウインドウに含まれるビューのカーソル矩形に無効にします
-(void)invalidateCursorRectsForView:(NSView *)aView:
解説
ウインドウに含まれるビューのカーソル矩形に無効にします。
キーウインドウになるときにはまた有効になります。
返り値
( void )
なし
引数
( NSView * )aView
ビュー
フレームワーク
ApplicationKit
クラス
NSWindow
Instance Methods
使用可能
10.0
参照
- resetCursorRects
- resetCursorRects (NSView)
例文
#import "Controller.h" @implementation Controller - (IBAction)invalidate:(id)sender;//ボタンを押す { [myWindow invalidateCursorRectsForView:image]; NSLog(@"!!!"); } - (IBAction)pushButton:(id)sender { //開けるファイル拡張子の配列 NSArray *imgTypes = [ NSArray arrayWithObject : @"tiff" ]; //OpenPanelを作る NSOpenPanel *opFile = [ NSOpenPanel openPanel ]; NSImage *img ; //OpenPanelの結果のボタン番号 int opRet; //OpenPanelでファイル選択 opRet = [ opFile runModalForDirectory : NSHomeDirectory() //どこのディレクトリを出すか file : @"Pictures" //どのファイルを選択しておくか types : imgTypes ];//選べるファイルタイプ if ( opRet == NSOKButton ) { // OPENPanelのボタンがOKなら img = [ [ NSImage alloc ] initWithContentsOfFile: [ opFile filename ] ]; [image setImage : img ]; } } @end