我有一个应用程序,在其中创建主窗口的两个子视图,这些子视图是一个名为Page的类,在每个子视图上我都放置了一个名为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)];

    }

}
 ...

最佳答案

您可能想看看NSViews -convertPoint:fromView:-convertPointFromBacking:这样的方法有助于将矩形,点等转换为不同的坐标系。

nil指定fromView:将从该视图的窗口进行转换。此代码将适用于您:

NSPoint eventLocation = [theSubView convertPoint:p fromView:nil];

关于cocoa - 在NSWindow中的mouseUp上获取 subview 的NSPoint,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8053911/

10-12 13:11