オブジェクトNSScrollView
のコンテンツ ビューに追加しました。NSWindow
ここで、スクロールビュー上のマウスの位置を知る必要があります。
私は以下を試しました。しかし、正しい位置を示すものは何もありません。
- (void)mouseDown:(NSEvent *)theEvent{
NSPoint eventLocation = [theEvent locationInWindow];
NSPoint locationInScroll = [inputScrollView convertPoint:eventLocation toView:nil];
//Both gives the wrong location.
}