レシーバのビューの中の指定した位置にあるサブビューを返します
-(NSView *)hitTest:(NSPoint)aPoint:
解説
レシーバのビューの中の指定した位置にあるサブビューを返します。
レシーバはサブビューを含むことのできるスクロールビューなど
返り値
( NSView * )
ビュー
引数
( NSPoint )aPoint
位置
フレームワーク
ApplicationKit
クラス
NSView
Instance Methods
使用可能
10.0
参照
- mouse:inRect:
- convertPoint:toView:
例文
#import "MyScrollView.h" @implementation MyScrollView - (void)mouseDown:(NSEvent *)theEvent { NSView *view = [self hitTest:[theEvent locationInWindow]]; NSLog([view className]); } @end