NSMenuItem中的自定义视图禁用NSPopUpButton选择

时间:2012-01-13 14:11:16

标签: objective-c cocoa nsview nsmenuitem nspopupbutton

我想自定义一个NSPopUpButton,所以我实现了CustomMenuItemView,现在只有以下代码(用于测试目的):

- (void)drawRect:(NSRect)dirtyRect
{
    [[NSColor redColor] set];
    NSRectFill(dirtyRect);
}

现在,对于每NSMenuItem我添加到NSMenu中的myPopUpButton.menu,我将视图设置为自定义视图:

NSMenuItem *menuItem = [[NSMenuItem alloc] initWithTitle:@"Some title" action:NULL keyEquivalent:@""];
menuItem.view = [[CustomMenuItemView alloc] initWithFrame:NSMakeRect(0, 0, 100, 25)];

当我运行程序并打开弹出按钮时,菜单项选择似乎被禁用(即点击它时没有任何反应)。

我猜它实际上并没有被禁用;它只是不再响应事件了。我是否需要在自定义视图中添加一些事件处理?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:8)

我通过将mouseUp方法添加到CustomMenuItemView

来解决了这个问题
- (void)mouseUp:(NSEvent*) event
{
    NSMenu *menu = self.enclosingMenuItem.menu;
    [menu cancelTracking];
    [menu performActionForItemAtIndex:[menu indexOfItem:self.enclosingMenuItem]];
}