我有一个应用程序,我在其中创建主窗口的两个子视图,子视图是一个名为Page的类,在每个子视图中我放置了一个名为Ad的类的子视图。我在页面子视图之间拖动广告类。最初我只是重置Ad类视图的框架,但我真正想做的是将它放在NSLeftMouseUp事件发生的地方。
我这样做的过程是在创建数组时将所有Page子视图注册到数组中。然后我创建了NSWindow的子类,并将该类分配给IB中的主窗口。我将Page视图数组传递给了这个类。
我认为覆盖sendEvent方法,检查事件是否为NSLeftMouseDown,NSLeftMouseDragged或NSLeftMouseUp。 NSLeftMouseDown用于检查并查看单击的子视图是否是窗口层次结构的最深子视图 - window-> Page class-> Ad class,因为我想移动广告而不是页面。我循环遍历数组,然后检查单击的NSView(Ad)的descendentOf方法,看看是否是枚举的NSView(Page)的后代。 (希望有道理)。然后我拉它的框架。
在NSLeftMouseDragged中,我将光标更改为类似于被拖动的广告。
在NSLeftMouseUp中,我查看我们要将广告移动到哪个视图。我无法弄清楚的是如何在该视图上获取NSPoint for NSLeftMouseUp,我可以为窗口获取它,但是该点的x / y将为接收子视图关闭...如何检索NSPoint在子视图内?
...
} else if ([e type] == NSLeftMouseUp) {
//get which view we are going to drop the ad on
landingView = [[self contentView] hitTest:[e locationInWindow]];
/****ui question here for Mike:
if the mouseup event is not on a page class, should the mouse remain the dragcursor image here or should
we change it back to the mouse icon and stop this process****/
if ([[landingView className] isEqual:@"Page"]) {
//get ad rect
float adX = thisAdFrame.origin.x + 10.0;
float adY = thisAdFrame.origin.y + 20.0;
//get nspoint of mouse up event
NSPoint p = [e locationInWindow];
[landingView addSubview:theSubView];
[theSubView setFrame:NSMakeRect(p.x, p.y, thisAdFrame.size.width, thisAdFrame.size.height)];
}
}
...
答案 0 :(得分:2)
您可能需要查看NSView -convertPoint:fromView:
和-convertPointFromBacking:
这些方法有助于将矩形,点等转换为不同的坐标系。
为nil
指定fromView:
会将其转换为该视图的窗口。此代码适用于您:
NSPoint eventLocation = [theSubView convertPoint:p fromView:nil];