右键单击OSX新项目

时间:2016-01-12 17:52:06

标签: objective-c swift macos cocoa right-click

我想向您提供建议。可以在OSX上右键单击添加新项目吗?例如,我在safari,TextEdit,Notes,Pages,Preview中选择任何单词,我想将此单词发送到服务器并获得响应。有可能的?你能给我一些提示我该怎么办?

1 个答案:

答案 0 :(得分:2)

您可以尝试以下方式:

- (void)mouseDown:(NSEvent *)theEvent {

    NSMenu *theMenu = [[NSMenu alloc] initWithTitle:@"Contextual Menu"];

    [theMenu insertItemWithTitle:@"Beep" action:@selector(beep:) keyEquivalent:@"" atIndex:0];

    [theMenu insertItemWithTitle:@"Honk" action:@selector(honk:) keyEquivalent:@"" atIndex:1];

    [NSMenu popUpContextMenu:theMenu withEvent:theEvent forView:self];

}

了解更多here