我已经添加了我的对象NSScrollView
的内容视图。NSWindow
现在我需要知道鼠标在滚动视图上的位置。
我尝试了以下方法。但是没有给出正确的位置。
- (void)mouseDown:(NSEvent *)theEvent{
NSPoint eventLocation = [theEvent locationInWindow];
NSPoint locationInScroll = [inputScrollView convertPoint:eventLocation toView:nil];
//Both gives the wrong location.
}